From 5df6022ce7ad98113825f82cbaf68f4514f1c6f5 Mon Sep 17 00:00:00 2001 From: Levan Velijanashvili Date: Sun, 1 Mar 2015 22:55:54 +0400 Subject: [PATCH] Update PHP >=5.4.0 and update phpunit --- composer.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 8652e91..35808a3 100644 --- a/composer.json +++ b/composer.json @@ -11,11 +11,11 @@ } ], "require": { - "php": ">=5.3.29" + "php": ">=5.4.0", + "guzzle/guzzle": "~3.9" }, "require-dev": { - "phpspec/phpspec": "~2.0", - "phpunit/phpunit": "~3.7" + "phpunit/phpunit": "~4.0" }, "autoload": { "psr-0": { @@ -24,5 +24,10 @@ "psr-4": { "Stichoza\\Google\\": "src/Stichoza/Google/" } + }, + "autoload-dev": { + "psr-4": { + "Stichoza\\Google\\Tests\\": "tests/" + } } }