From 1cd936210c3ae95e4a64436aa5ed08e294b774d0 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 11 Aug 2025 14:10:15 +0200 Subject: [PATCH] 4.0 | Composer: update the version constraints for PHPUnit 11 PHPUnit has released a new version which fixes the process hanging, which was previously worked around via PR 1181. This commit updates the Composer version constraints to still allow a range of PHPUnit 11 version, while preventing the problematic versions from being installed. Related upstream issue: sebastianbergmann/phpunit 6304 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index adac7e15c7..cb9f91a4f1 100644 --- a/composer.json +++ b/composer.json @@ -36,7 +36,7 @@ "ext-xmlwriter": "*" }, "require-dev": { - "phpunit/phpunit": "^8.0 || ^9.3.4 || ^10.5.32 || 11.3.3 - 11.5.28" + "phpunit/phpunit": "^8.0 || ^9.3.4 || ^10.5.32 || 11.3.3 - 11.5.28 || ^11.5.31" }, "bin": [ "bin/phpcbf",