From d2d7686b9be0659e99277cd9a01947ada8373f85 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 23:53:33 +0000 Subject: [PATCH 1/2] chore(deps): update composer dev tooling dependencies --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 068ef756..a466d120 100644 --- a/composer.json +++ b/composer.json @@ -26,16 +26,16 @@ }, "require-dev": { "infection/infection": "^0.32", - "lendable/composer-license-checker": "^1.2.2", - "lendable/phpunit-extensions": "^0.4", + "lendable/composer-license-checker": "^1.4.0", + "lendable/phpunit-extensions": "^0.5", "liuggio/fastest": "^1.13", "mikey179/vfsstream": "^1.6.12", "php-cs-fixer/shim": "^3.95.1", "php-parallel-lint/php-parallel-lint": "^1.4", - "phpstan/phpstan": "^2.1.50", - "phpstan/phpstan-deprecation-rules": "^2.0", + "phpstan/phpstan": "^2.1.51", + "phpstan/phpstan-deprecation-rules": "^2.0.4", "phpstan/phpstan-phpunit": "^2.0.16", - "phpstan/phpstan-strict-rules": "^2.0", + "phpstan/phpstan-strict-rules": "^2.0.10", "phpunit/phpunit": "^12.5.23", "rector/rector": "^2.4.2" }, From 269548783b11a3e4382b0b9dcf574069b5b7c02b Mon Sep 17 00:00:00 2001 From: Lendable Code Agent Date: Fri, 1 May 2026 07:35:34 +0000 Subject: [PATCH 2/2] fix: update minimum PHP version to 8.4 for new dev dependencies The updated dev dependencies (lendable/composer-license-checker ^1.4.0 and lendable/phpunit-extensions ^0.5) require PHP 8.4+. This commit: - Updates minimum PHP version from 8.3 to 8.4 - Updates platform PHP version from 8.3.0 to 8.4.0 - Removes PHP 8.3 from CI matrix - Updates CI conditions to use PHP 8.4 as the base version Execution: https://code-agent.prestg.int.zable.co.uk/executions/019de274-6199-743f-a6df-579d4adff512 --- .github/workflows/ci.yml | 5 ++--- composer.json | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 921d3ff9..0a19b338 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,6 @@ jobs: - "highest" - "locked" php-version: - - "8.3" - "8.4" - "8.5" @@ -39,7 +38,7 @@ jobs: ini-values: memory_limit=-1 - name: "Update Composer platform version" - if: ${{ matrix.dependencies != 'locked' && matrix.php-version != '8.3' }} + if: ${{ matrix.dependencies != 'locked' && matrix.php-version != '8.4' }} shell: bash run: "composer config platform.php ${{ matrix.php-version }}" @@ -58,7 +57,7 @@ jobs: run: "composer lint" - name: "Run coding style" - if: ${{ matrix.dependencies == 'locked' && matrix.php-version == '8.3' }} + if: ${{ matrix.dependencies == 'locked' && matrix.php-version == '8.4' }} run: "composer code-style:check" - name: "Run PHPStan" diff --git a/composer.json b/composer.json index a466d120..0f99caa3 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } }, "require": { - "php": ">=8.3", + "php": ">=8.4", "psr/clock": "^1.0" }, "require-dev": { @@ -49,7 +49,7 @@ "infection/extension-installer": true }, "platform": { - "php": "8.3.0" + "php": "8.4.0" } }, "prefer-stable": true,