From fc28c27355c57a2de526f410450d48b0a8a5353d Mon Sep 17 00:00:00 2001 From: Albin Kerouanton Date: Fri, 2 Jun 2017 13:11:20 +0200 Subject: [PATCH] Fix version constraint for phpunit version PHPUnit classes are namespaced since 6.0, and aliases are available since v5.4.3. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 076d5ff..4c222a1 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ }, "require-dev": { "phpspec/phpspec": "^3.4", - "phpunit/phpunit": "^5", + "phpunit/phpunit": "~5.5", "aws/aws-sdk-php": "~3" }, "license": "MIT",