From 6920dcb9f0114f28c03d417a5df295a08a5cdf07 Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Sat, 30 May 2026 22:30:01 +0200 Subject: [PATCH] [1.x] Update test environment for PHP 7.2 to compatible PHPUnit version This changes ensures we can continue run PHPUnit on PHP 7.2 by updating PHPUnit to 8.5. This is due to recent improvements in composer as discussed in https://github.com/reactphp/event-loop/pull/284. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 25a41fe1..59d085bf 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" + "phpunit/phpunit": "^9.6 || ^8.5 || ^5.7 || ^4.8.36" }, "suggest": { "ext-pcntl": "For signal handling support when using the StreamSelectLoop"