From 8201e1eb03bd914b335437daea38a12f9d4130d7 Mon Sep 17 00:00:00 2001 From: Filip Halaxa Date: Tue, 16 Nov 2021 16:08:48 +0100 Subject: [PATCH] Phpunit 8 as deafult so the test script and git revision end up at the same value after tests run. --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 3ee7d2d..d1fdd15 100644 --- a/composer.json +++ b/composer.json @@ -13,12 +13,12 @@ "php": ">=5.6" }, "require-dev": { - "ext-json": "*" + "ext-json": "*", + "phpunit/phpunit": "^8" }, "suggest": { "ext-json": "To run JSON Machine out of the box without custom decoders.", - "guzzlehttp/guzzle": "To run example with GuzzleHttp", - "phpunit/phpunit": "Not specified in require-dev as the phpunit version varies across PHP versions that JSON Machine supports" + "guzzlehttp/guzzle": "To run example with GuzzleHttp" }, "autoload" : { "psr-4": {"JsonMachine\\": "src/"},