From 57e42453467d90d5938876895cb775e0d57f82cc Mon Sep 17 00:00:00 2001 From: toooni Date: Sat, 8 Nov 2014 10:02:28 +0100 Subject: [PATCH] made guzzle version less strict if a project has dependencies for an other guzzle version (in my example for 3.7.x) because of an other vendor (f.e. aws/aws-sdk-php) there are unresolvable composer conflicts --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 151de4b..0b80c51 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ }, "require": { "php": ">=5.4.0", - "guzzle/guzzle": "3.9.*" + "guzzle/guzzle": ">=3.7.0" }, "require-dev": { "phpunit/phpunit": "4.*"