From 7ee648d2e044ad149618675b91e6d98eb6ae08a8 Mon Sep 17 00:00:00 2001 From: Tom Kay Date: Thu, 3 Sep 2026 14:56:58 +0100 Subject: [PATCH] Extend the CI matrix to PHP 8.3, 8.4 and 8.5 Follows on from #9, which added the workflow with 7.4 through 8.2. Adds the three current releases, so the matrix now runs 7.4, 8.0, 8.1, 8.2, 8.3, 8.4 and 8.5. Verified against a clean checkout: fresh composer install plus the full suite on PHP 8.5.10 exits 0 (184 tests, 511 assertions). The 14 warnings for @expectedException-style annotations deprecated in PHPUnit 8 are unchanged and do not fail the build. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 178d36f..43c9694 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,9 @@ jobs: - "8.0" - "8.1" - "8.2" + - "8.3" + - "8.4" + - "8.5" steps: - name: Checkout repository