From e1b55c28da1909aa2b0932cbb454844199fa7a90 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 9 Sep 2025 13:56:46 +0545 Subject: [PATCH 1/2] chore(ci): add PHP 8.5 to CI workflows --- .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 cd94fb8..76375de 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: ['pcov'] code-style: ['no'] 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: 'pcov' code-style: 'no' code-analysis: 'yes' From 5764eacc04e7855e42ca6047fec752ce4f58bf13 Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Mon, 1 Dec 2025 18:36:54 +0930 Subject: [PATCH 2/2] chore(deps): bump php-cs-fixer requirement minor version --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index faf06b3..36e685c 100644 --- a/composer.json +++ b/composer.json @@ -44,7 +44,7 @@ } }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.64", + "friendsofphp/php-cs-fixer": "^3.91", "phpstan/phpstan": "^1.12", "phpunit/phpunit" : "^9.6" },