[FrameworkBundle] Fix recommended composer command (add vendor)

Since running composer commands is time heavy, having a wrong one recommended to you just burns your time.
This commit is contained in:
Tomas Kmieliauskas 2018-01-04 14:01:31 +02:00 committed by Fabien Potencier
parent 85240f2247
commit f6d38b3770

View File

@ -1418,7 +1418,7 @@ class FrameworkExtension extends Extension
}
if (!class_exists('Symfony\Component\Security\Csrf\CsrfToken')) {
throw new LogicException('CSRF support cannot be enabled as the Security CSRF component is not installed. Try running "composer require security-csrf".');
throw new LogicException('CSRF support cannot be enabled as the Security CSRF component is not installed. Try running "composer require symfony/security-csrf".');
}
if (!$this->sessionConfigEnabled) {