From 541984af8125dbf29d076a3bc27fc1267cfff253 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sat, 8 Jun 2024 23:25:29 +0900 Subject: [PATCH] Update PHPUnit version requirement in composer.json The version requirement for PHPUnit has been expanded to support both 8.5 and 9.5 versions. This change allows for greater flexibility and compatibility with different setups. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 2a04b13..8c0bb3a 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "ray/di": "^2.10" }, "require-dev": { - "phpunit/phpunit": "^9.5", + "phpunit/phpunit": "^8.5 || ^9.5", "doctrine/coding-standard": "^8.2", "phpmd/phpmd": "^2.9", "squizlabs/php_codesniffer": "^3.5",