From acddda496e3357f9f1adfef9b698f2f51ee8e924 Mon Sep 17 00:00:00 2001 From: dmamchyts Date: Tue, 10 Feb 2026 13:17:50 +0300 Subject: [PATCH 1/2] Support phpunit 13 --- .github/workflows/main.yml | 4 ++-- composer.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 490425c..6f1ab44 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,11 +8,11 @@ jobs: strategy: matrix: - php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4] + php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.4] steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/composer.json b/composer.json index 7b2eb40..f1a692b 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0|^12.0" + "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0|^12.0|^13.0" }, "autoload": { "psr-4": { From 31e2fb234133142ec4b15dd687c13149d592a22a Mon Sep 17 00:00:00 2001 From: dmamchyts Date: Fri, 24 Apr 2026 10:52:44 +0300 Subject: [PATCH 2/2] add PHP 8.5 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6f1ab44..2004e28 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.4] + php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5] steps: - name: Checkout code