From 2e4773885afaf915055550e795b7f7c33cea1282 Mon Sep 17 00:00:00 2001 From: Michael Esteves Date: Fri, 3 Jul 2026 11:03:46 +1000 Subject: [PATCH 1/3] chore: CRM-14077 lift PHP cap to <8.5 Co-Authored-By: Claude Fable 5 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 680d8c7..771581b 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ } ], "require": { - "php": ">=7.4 <8.3", + "php": ">=7.4 <8.5", "psr/log": "^1.0 || ^2.0 || ^3.0", "rexlabs/utility-belt": "^4.0", "guzzlehttp/guzzle": "^7.0", From 1f23da3ecf5f10763a8fae8c900edd7dee4c4ac8 Mon Sep 17 00:00:00 2001 From: Michael Esteves Date: Fri, 3 Jul 2026 11:03:46 +1000 Subject: [PATCH 2/3] chore: CRM-14077 add PHP 8.3 to the CI matrix Co-Authored-By: Claude Fable 5 --- .github/workflows/pr_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_test.yml b/.github/workflows/pr_test.yml index 53dc730..9f66915 100644 --- a/.github/workflows/pr_test.yml +++ b/.github/workflows/pr_test.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - php: ["7.4", "8.0", "8.1", "8.2"] + php: ["7.4", "8.0", "8.1", "8.2", "8.3"] composer-version: [prefer-lowest, prefer-stable] steps: - name: Checkout From 9fbc6c61ebc1ed9516cf3983f5b308b8b07eb991 Mon Sep 17 00:00:00 2001 From: Michael Esteves Date: Fri, 3 Jul 2026 12:01:35 +1000 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20CRM-14077=20narrow=20the=20lift=20to?= =?UTF-8?q?=20<8.4=20=E2=80=94=20claim=20only=20the=20CI-validated=20range?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 771581b..738e18c 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ } ], "require": { - "php": ">=7.4 <8.5", + "php": ">=7.4 <8.4", "psr/log": "^1.0 || ^2.0 || ^3.0", "rexlabs/utility-belt": "^4.0", "guzzlehttp/guzzle": "^7.0",