diff options
author | Igor Wiedler <igor@wiedler.ch> | 2013-04-27 22:06:15 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2013-04-27 22:06:15 +0200 |
commit | 19f7bad34640fa722438b80a9733af6c17d9f203 (patch) | |
tree | 653de82879a3315d3ebc4d55e53e476f722323aa | |
parent | b1f9472178bd3649dd221d5c84a95eda6a41cc9b (diff) | |
download | symfony-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.json | 2 |
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", |