From ed13cf58f0bdff6d6ed2f27d4d4130fccaddc50e Mon Sep 17 00:00:00 2001 From: Nick Huang <9151347+nick322@users.noreply.github.com> Date: Tue, 25 Nov 2025 12:32:59 +0800 Subject: [PATCH] Add PHP 8.5 to the testing matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6738c9d..5d24b96 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: true matrix: - php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] stability: [prefer-stable] name: PHP ${{ matrix.php }} - ${{ matrix.stability }}