From 01016be99eb6d01f4c1a512ca73429439228bfb4 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Sat, 27 Apr 2013 22:06:15 +0200 Subject: [PATCH] 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 --- src/Symfony/Component/Security/composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/composer.json b/src/Symfony/Component/Security/composer.json index 5ea71f38b8..3e684bf3ee 100644 --- a/src/Symfony/Component/Security/composer.json +++ b/src/Symfony/Component/Security/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",