You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
trigger_deprecation('symfony/security-bundle', '5.4', 'Configuring Symfony without the Composer Runtime API is deprecated. Consider upgrading to Composer 2.1 or later.');
81
-
}
82
-
83
78
if (!array_filter($configs)) {
84
79
return;
85
80
}
@@ -101,7 +96,7 @@ public function load(array $configs, ContainerBuilder $container)
101
96
102
97
$loader->load('security_authenticator.php');
103
98
104
-
if ($container::willBeAvailable('symfony/twig-bridge', LogoutUrlExtension::class, ['symfony/security-bundle'], true)) {
99
+
if ($container::willBeAvailable('symfony/twig-bridge', LogoutUrlExtension::class, ['symfony/security-bundle'])) {
105
100
$loader->load('templating_twig.php');
106
101
}
107
102
@@ -111,7 +106,7 @@ public function load(array $configs, ContainerBuilder $container)
111
106
$loader->load('security_debug.php');
112
107
}
113
108
114
-
if (!$container::willBeAvailable('symfony/expression-language', ExpressionLanguage::class, ['symfony/security-bundle'], true)) {
109
+
if (!$container::willBeAvailable('symfony/expression-language', ExpressionLanguage::class, ['symfony/security-bundle'])) {
@@ -831,7 +826,7 @@ private function createExpression(ContainerBuilder $container, string $expressio
831
826
return$this->expressions[$id];
832
827
}
833
828
834
-
if (!$container::willBeAvailable('symfony/expression-language', ExpressionLanguage::class, ['symfony/security-bundle'], true)) {
829
+
if (!$container::willBeAvailable('symfony/expression-language', ExpressionLanguage::class, ['symfony/security-bundle'])) {
835
830
thrownew \RuntimeException('Unable to use expressions as the Symfony ExpressionLanguage component is not installed. Try running "composer require symfony/expression-language".');
0 commit comments