Updated Composer dependencies to require the Security\Csrf component where necessary

This commit is contained in:
Bernhard Schussek 2013-09-30 14:23:39 +02:00
parent bf85e8365a
commit 2e04e32c8f
6 changed files with 18 additions and 7 deletions

View File

@ -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": {

View File

@ -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"

View File

@ -17,7 +17,7 @@
],
"require": {
"php": ">=5.3.3",
"symfony/security": "~2.2",
"symfony/security": "~2.4",
"symfony/http-kernel": "~2.2"
},
"require-dev": {

View File

@ -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\\": "" }

View File

@ -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\\": "" }

View File

@ -25,6 +25,7 @@
"require-dev": {
"symfony/form": "~2.0",
"symfony/routing": "~2.2",
"symfony/security-csrf": "~2.4",
"psr/log": "~1.0"
},
"suggest": {