From 110d65d621a389b3a9d5fdd48e05f5f926678d36 Mon Sep 17 00:00:00 2001 From: jcarter Date: Tue, 11 Dec 2018 12:53:21 +1100 Subject: [PATCH] fix(composer): Require phpunit ^5.7 Versions >= 6.0 break compatibility with all versions of silverstripe/framework. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 067b469..4b8b826 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,8 @@ ], "require": { "silverstripe/framework": "~4.0", - "codeception/codeception": "~2.3" + "codeception/codeception": "~2.3", + "phpunit/phpunit": "^5.7" }, "extra": { "installer-name": "test-assist",