From a3e246c62bf96544c43e85c67d5e5571d7de4ee5 Mon Sep 17 00:00:00 2001 From: slayerfx Date: Wed, 1 Jul 2026 12:53:11 +0200 Subject: [PATCH 1/2] Add PHP 8.5 to the CI matrix --- .github/workflows/php.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 200c1b5..92833a8 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -46,6 +46,7 @@ jobs: - '8.2' - '8.3' - '8.4' + - '8.5' steps: - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -77,6 +78,7 @@ jobs: - '8.2' - '8.3' - '8.4' + - '8.5' steps: - name: Setup PHP uses: shivammathur/setup-php@v2 From 480130f2b710233207f92cd05a263ea9341624e7 Mon Sep 17 00:00:00 2001 From: slayerfx Date: Wed, 1 Jul 2026 13:42:39 +0200 Subject: [PATCH 2/2] Allow PHPUnit 6, 7 and 8 in addition to 9 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 615e11c..f9f0f8d 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "ext-xml": "*" }, "require-dev": { - "phpunit/phpunit": "^7.0 || ^9.0", + "phpunit/phpunit": "^6.0 || ^7.0 || ^8.0 || ^9.0", "phpstan/phpstan": "^0.12.88 || ^1.0.0" } }