From 57e411855c3127d2b5382864a8221ba60b9fee12 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Mon, 9 Feb 2015 20:22:16 -0800 Subject: [PATCH] composer.json: Specify a specific version of PHPUnit to use (~4.5) Using * will use the latest compatible version, which could potentially introduce breaking changes. ~4.5 is equivalent to >=4.5,<5.0 Change-Id: I65bf0998cc028707f607ce7adaf45e27b1e6bca1 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index bae3b554fb..94bec94ac0 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ }, "require-dev": { "justinrainbow/json-schema": "~1.3", - "phpunit/phpunit": "*" + "phpunit/phpunit": "~4.5" }, "suggest": { "ext-fileinfo": "*", -- 2.20.1