diff options
author | Bernhard Schussek <bschussek@gmail.com> | 2013-09-30 14:23:39 +0200 |
---|---|---|
committer | Bernhard Schussek <bschussek@gmail.com> | 2013-09-30 14:39:06 +0200 |
commit | 1e792d17b2d6bc3842425f3664b92a32b600e646 (patch) | |
tree | 2895321aae40472f658614597080641969a4d519 | |
parent | 9d9fd91d87994fb42d0d03985800ab081548b0a7 (diff) | |
download | symfony-security-1e792d17b2d6bc3842425f3664b92a32b600e646.zip symfony-security-1e792d17b2d6bc3842425f3664b92a32b600e646.tar.gz symfony-security-1e792d17b2d6bc3842425f3664b92a32b600e646.tar.bz2 |
Updated Composer dependencies to require the Security\Csrf component where necessary
-rw-r--r-- | Csrf/composer.json | 8 | ||||
-rw-r--r-- | Http/composer.json | 1 |
2 files changed, 7 insertions, 2 deletions
diff --git a/Csrf/composer.json b/Csrf/composer.json index 6831c03..3cfc2b4 100644 --- a/Csrf/composer.json +++ b/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/Http/composer.json b/Http/composer.json index da7fc77..4dfd985 100644 --- a/Http/composer.json +++ b/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": { |