From fd9699ab0e10cb50d6e1999405ddaed59f46f23f Mon Sep 17 00:00:00 2001 From: Jamie Hannaford Date: Mon, 16 Jun 2014 13:55:33 +0200 Subject: [PATCH] Removing unnecessary line and switching to tilde operator The `guzzlehttp/guzzle' package will automatically pull in the streams dependency by itself, so we do not need to list it as an additional dependency. Also switching to tilde operators since it makes it clear that we're following semantic versioning. Change-Id: I8b45184242fc538ea2d92275d9e0e4137e744f70 --- composer.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index dd89e44..2ef9227 100644 --- a/composer.json +++ b/composer.json @@ -6,11 +6,10 @@ "license": "Apache-2.0", "require": { "php": ">=5.4.0", - "guzzlehttp/guzzle": "4.*", - "guzzlehttp/streams": "1.*" + "guzzlehttp/guzzle": "~4.1" }, "require-dev": { - "phpunit/phpunit": "4.*" + "phpunit/phpunit": "~4.1" }, "support": { "irc": "irc://irc.freenode.org/openstack-sdks", @@ -25,4 +24,4 @@ "OpenStack\\Tests\\": "tests/Tests" } } -} \ No newline at end of file +}