summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2013-04-27 22:06:15 +0200
committerIgor Wiedler <igor@wiedler.ch>2013-04-27 22:06:15 +0200
commit19f7bad34640fa722438b80a9733af6c17d9f203 (patch)
tree653de82879a3315d3ebc4d55e53e476f722323aa
parentb1f9472178bd3649dd221d5c84a95eda6a41cc9b (diff)
downloadsymfony-security-19f7bad34640fa722438b80a9733af6c17d9f203.zip
symfony-security-19f7bad34640fa722438b80a9733af6c17d9f203.tar.gz
symfony-security-19f7bad34640fa722438b80a9733af6c17d9f203.tar.bz2
Fix http-kernel dep in symfony/security
The current constraint will not match 2.3.x-dev and cause edge cases where either: * composer falls back to symfony/symfony because it cannot find a match * composer installs 2.2 versions of http-kernel and http-foundation
-rw-r--r--composer.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/composer.json b/composer.json
index 5ea71f3..3e684bf 100644
--- a/composer.json
+++ b/composer.json
@@ -19,7 +19,7 @@
"php": ">=5.3.3",
"symfony/event-dispatcher": "~2.1",
"symfony/http-foundation": ">=2.1,<2.4-dev",
- "symfony/http-kernel": ">=2.1,<=2.3-dev"
+ "symfony/http-kernel": ">=2.1,<2.4-dev"
},
"require-dev": {
"symfony/form": "~2.0",