From 1b1f09577fea83da3e02ce6108672578716921a8 Mon Sep 17 00:00:00 2001 From: Mark Scherer Date: Thu, 6 Aug 2026 13:40:03 +0200 Subject: [PATCH] Allow PHPUnit 13 The constraint stopped at 12, so CI never exercised the current major. PHPUnit 13 needs PHP 8.4, which the matrix has covered since PHP 8.5 was added, so Composer now resolves 11 on the 8.1 job and 13 on the 8.4 and 8.5 ones. Verified against 13.2.6: the suite passes unchanged and phpunit.xml.dist produces no schema warnings. --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 6adbbe2..e423be2 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ }, "require-dev": { "phpstan/phpstan": "^2.0.0", - "phpunit/phpunit": "^10.3 || ^11.2 || ^12.0" + "phpunit/phpunit": "^10.3 || ^11.2 || ^12.0 || ^13.0" }, "autoload": { "psr-4": { @@ -71,4 +71,4 @@ }, "minimum-stability": "stable", "prefer-stable": true -} +} \ No newline at end of file