From 33ee047f83175ada2ef471db8ce5f8e5ab4a6050 Mon Sep 17 00:00:00 2001 From: Luis Cordova Date: Sat, 9 Aug 2014 07:50:00 -0500 Subject: [PATCH] fix dependency on elastic extension i had a weird error in which just installing the bundle with "friendsofsymfony/elastica-bundle": "~3.0.2", game me a version back even before it had a composer! :blush: i checked and found out composer gets really confused or glitchy with packages not following semver. In any case 1.3.0 is out, and i remove the 4th digit which i think composer ignores totally or gets confused about. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a1734dd..2fd9d3c 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "symfony/console": "~2.1", "symfony/form": "~2.1", "symfony/property-access": "~2.2", - "ruflin/elastica": ">=0.90.10.0, <1.3-dev", + "ruflin/elastica": ">=0.90.10.0, <1.4-dev", "psr/log": "~1.0" }, "require-dev":{