From 31df24f17cd0c2bd9abdd6ee2264c75af7469d9a Mon Sep 17 00:00:00 2001 From: Christopher Moll Date: Thu, 28 Jan 2016 01:26:35 -0500 Subject: [PATCH 1/2] Allow Symfony versions > 2.4 Seems to work fine with 2.5+, is there any specific reason to limit it to 2.4? --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5f5730e..1a30371 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "minimum-stability": "dev", "require": { "php": ">=5.3.3", - "symfony/symfony": "2.4.*", + "symfony/symfony": ">=2.4", "codeconsortium/ccdn-component-bb-code": "dev-master" }, "autoload": { From 0b91d6ad5826f1ddf3d7bd1581d8e7bd89bf8673 Mon Sep 17 00:00:00 2001 From: Christopher Moll Date: Fri, 29 Jan 2016 12:01:04 -0500 Subject: [PATCH 2/2] Symfony version should match readme Used ~ instead of >= to match the readme and prohibit symfony3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1a30371..26139ed 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "minimum-stability": "dev", "require": { "php": ">=5.3.3", - "symfony/symfony": ">=2.4", + "symfony/symfony": "~2.4", "codeconsortium/ccdn-component-bb-code": "dev-master" }, "autoload": {