diff --git a/src/Symfony/Bridge/Twig/composer.json b/src/Symfony/Bridge/Twig/composer.json index 5797586731..766ada5e1b 100644 --- a/src/Symfony/Bridge/Twig/composer.json +++ b/src/Symfony/Bridge/Twig/composer.json @@ -17,6 +17,7 @@ ], "require": { "php": ">=5.3.3", + "symfony/security-csrf": "~2.4", "twig/twig": "~1.11" }, "require-dev": { @@ -26,7 +27,7 @@ "symfony/templating": "~2.1", "symfony/translation": "~2.2", "symfony/yaml": "~2.0", - "symfony/security": "~2.0", + "symfony/security": "~2.4", "symfony/stopwatch": "~2.2" }, "suggest": { diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index 5af039dddb..ede2bdf3b0 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -23,6 +23,8 @@ "symfony/http-kernel": "~2.3", "symfony/filesystem": "~2.3", "symfony/routing": "~2.2", + "symfony/security-core": "~2.4", + "symfony/security-csrf": "~2.4", "symfony/stopwatch": "~2.3", "symfony/templating": "~2.1", "symfony/translation": "~2.3", @@ -30,7 +32,7 @@ }, "require-dev": { "symfony/finder": "~2.0", - "symfony/security": "~2.3", + "symfony/security": "~2.4", "symfony/form": "~2.3", "symfony/class-loader": "~2.1", "symfony/validator": "~2.1" diff --git a/src/Symfony/Bundle/SecurityBundle/composer.json b/src/Symfony/Bundle/SecurityBundle/composer.json index c9b80eb8e6..0d8aab43c0 100644 --- a/src/Symfony/Bundle/SecurityBundle/composer.json +++ b/src/Symfony/Bundle/SecurityBundle/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": ">=5.3.3", - "symfony/security": "~2.2", + "symfony/security": "~2.4", "symfony/http-kernel": "~2.2" }, "require-dev": { diff --git a/src/Symfony/Component/Form/composer.json b/src/Symfony/Component/Form/composer.json index 87905eaa69..8e6f419b68 100644 --- a/src/Symfony/Component/Form/composer.json +++ b/src/Symfony/Component/Form/composer.json @@ -24,11 +24,14 @@ }, "require-dev": { "symfony/validator": "~2.2", - "symfony/http-foundation": "~2.2" + "symfony/http-foundation": "~2.2", + "symfony/security-csrf": "~2.4" }, "suggest": { "symfony/validator": "For form validation.", - "symfony/security-csrf": "For protecting forms against CSRF attacks." + "symfony/security-csrf": "For protecting forms against CSRF attacks.", + "symfony/twig-bridge": "For templating with Twig.", + "symfony/framework-bundle": "For templating with PHP." }, "autoload": { "psr-0": { "Symfony\\Component\\Form\\": "" } diff --git a/src/Symfony/Component/Security/Csrf/composer.json b/src/Symfony/Component/Security/Csrf/composer.json index 6831c03038..3cfc2b4672 100644 --- a/src/Symfony/Component/Security/Csrf/composer.json +++ b/src/Symfony/Component/Security/Csrf/composer.json @@ -16,10 +16,14 @@ } ], "require": { - "php": ">=5.3.3" + "php": ">=5.3.3", + "symfony/security-core": "~2.4" }, "require-dev": { - "symfony/security-core": "~2.4" + "symfony/http-foundation": "~2.1" + }, + "suggest": { + "symfony/http-foundation": "For using the class SessionTokenStorage." }, "autoload": { "psr-0": { "Symfony\\Component\\Security\\Csrf\\": "" } diff --git a/src/Symfony/Component/Security/Http/composer.json b/src/Symfony/Component/Security/Http/composer.json index da7fc77d2b..4dfd98555d 100644 --- a/src/Symfony/Component/Security/Http/composer.json +++ b/src/Symfony/Component/Security/Http/composer.json @@ -25,6 +25,7 @@ "require-dev": { "symfony/form": "~2.0", "symfony/routing": "~2.2", + "symfony/security-csrf": "~2.4", "psr/log": "~1.0" }, "suggest": {