Skip to content

Commit ec691b6

Browse files
committed
minor symfony#25680 [FrameworkBundle] Fix recommended composer command (add vendor) (Tomas Kmieliauskas)
This PR was submitted for the master branch but it was merged into the 3.4 branch instead (closes symfony#25680). Discussion ---------- [FrameworkBundle] Fix recommended composer command (add vendor) | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | Since running composer commands is time heavy, having a wrong one recommended to you just burns your time. Commits ------- f6d38b3 [FrameworkBundle] Fix recommended composer command (add vendor)
2 parents 85240f2 + f6d38b3 commit ec691b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ private function registerSecurityCsrfConfiguration(array $config, ContainerBuild
14181418
}
14191419

14201420
if (!class_exists('Symfony\Component\Security\Csrf\CsrfToken')) {
1421-
throw new LogicException('CSRF support cannot be enabled as the Security CSRF component is not installed. Try running "composer require security-csrf".');
1421+
throw new LogicException('CSRF support cannot be enabled as the Security CSRF component is not installed. Try running "composer require symfony/security-csrf".');
14221422
}
14231423

14241424
if (!$this->sessionConfigEnabled) {

0 commit comments

Comments
 (0)