From 5ee70173337d7b887257e1fb7efad4e14d629c13 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Tue, 9 Sep 2025 14:14:48 +0545 Subject: [PATCH 1/3] 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 4f086ec..dada4fd 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: 'xdebug' code-style: 'yes' code-analysis: 'yes' - - php-versions: '8.4' + - php-versions: '8.5' coverage: 'xdebug' code-style: 'yes' code-analysis: 'yes' From 591eb47b39c58944ed994bcf75c6932b78a9c20a Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Mon, 1 Dec 2025 18:41:08 +0930 Subject: [PATCH 2/3] 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 8c768a7..51d0102 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "sabre/uri" : "^2.3 || ^3.0" }, "require-dev" : { - "friendsofphp/php-cs-fixer": "^3.87", + "friendsofphp/php-cs-fixer": "^3.91", "phpstan/phpstan": "^1.12", "phpstan/phpstan-phpunit": "^1.4", "phpstan/phpstan-strict-rules": "^1.6", From a0181ba5d0222200a58edab0c93422d5a970c640 Mon Sep 17 00:00:00 2001 From: Phillip Davis Date: Mon, 1 Dec 2025 18:55:38 +0930 Subject: [PATCH 3/3] 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 dada4fd..28effe7 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