From bb1b483202a611882f905f0215264f63443a83e8 Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Mon, 1 Dec 2025 21:08:08 +0930 Subject: [PATCH 1/2] chore (ci): add CI for PHP 8.5 on 6.0 branch --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cf81e0..abb4367 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['8.0', '8.1', '8.2', '8.3'] + php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4'] coverage: ['xdebug'] code-style: ['yes'] code-analysis: ['no'] @@ -21,7 +21,7 @@ jobs: coverage: 'none' code-style: 'yes' code-analysis: 'yes' - - php-versions: '8.4' + - php-versions: '8.5' coverage: 'xdebug' code-style: 'yes' code-analysis: 'yes' From 353d6e923633febb602926f2cd1e230ae0125f09 Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Mon, 1 Dec 2025 21:10:44 +0930 Subject: [PATCH 2/2] chore (ci): only run php-cs-fixer on PHP 7.4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abb4367..e64e297 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: matrix: php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4'] coverage: ['xdebug'] - code-style: ['yes'] + code-style: ['no'] code-analysis: ['no'] include: - php-versions: '7.4' @@ -23,7 +23,7 @@ jobs: code-analysis: 'yes' - php-versions: '8.5' coverage: 'xdebug' - code-style: 'yes' + code-style: 'no' code-analysis: 'yes' steps: - name: Checkout