From 1497c916aa72809d8efb3030bc9022036012d743 Mon Sep 17 00:00:00 2001 From: davidburns Date: Wed, 16 Sep 2026 16:03:27 +1000 Subject: [PATCH] Allow PHP 8.5 php constraint widened to <8.6 and the CI matrix runs on 8.5 as well. Suite passes on PHP 8.5 locally with the same job the workflow runs. CHANGELOG entry for 2.5.0. Co-Authored-By: Claude Fable 5.1 --- .github/workflows/pr_test.yml | 4 ++-- CHANGELOG.md | 4 ++++ composer.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr_test.yml b/.github/workflows/pr_test.yml index 6219200..1a8e98f 100644 --- a/.github/workflows/pr_test.yml +++ b/.github/workflows/pr_test.yml @@ -11,10 +11,10 @@ jobs: strategy: fail-fast: false matrix: - php: ["7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"] + php: ["7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4", "8.5"] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install dependencies run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 7614949..5270eba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.5.0 +- Add support for PHP 8.5 +- Limit support explicitly to PHP 7.0-8.5 + # 2.4.0 - Add support for PHP 8.3, 8.4 diff --git a/composer.json b/composer.json index 5274f8a..f57b05d 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": ">=7.0 <8.5" + "php": ">=7.0 <8.6" }, "require-dev": { "phpunit/phpunit": "^6.5.7|^7.5|^8.5"