From 07b0e9f4d76bd945fd2e0f1b0d46087a4918f48c Mon Sep 17 00:00:00 2001 From: Tom Kay Date: Thu, 3 Sep 2026 14:56:50 +0100 Subject: [PATCH] Extend the CI matrix to PHP 8.3, 8.4 and 8.5 Follows on from #7, which added the workflow running 8.2 only. Adds the three current releases, so the matrix now runs 8.2, 8.3, 8.4 and 8.5. The floor stays at 8.2: symfony/http-foundation ^v7.2.0, pulled in via packaged/context and packaged/http, requires PHP >= 8.2, so composer cannot resolve an installable set below that. Verified against a clean checkout: fresh composer install plus the full suite on PHP 8.5.10 exits 0 (39 tests, 144 assertions). 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 45ccd5f..155adc7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,9 @@ jobs: matrix: php-version: - "8.2" + - "8.3" + - "8.4" + - "8.5" steps: - name: Checkout repository