From aa3116ff323a49470d4790820fe008d151ec28f3 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Wed, 17 Dec 2025 16:20:22 +0300 Subject: [PATCH] PHP 8.5 support --- .github/workflows/build.yml | 2 +- .github/workflows/composer-require-checker.yml | 2 +- .github/workflows/mutation.yml | 2 +- CHANGELOG.md | 2 +- README.md | 2 +- composer.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4caa630..5c52945 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,4 +29,4 @@ jobs: os: >- ['ubuntu-latest', 'windows-latest'] php: >- - ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] diff --git a/.github/workflows/composer-require-checker.yml b/.github/workflows/composer-require-checker.yml index d864b99..57379c0 100644 --- a/.github/workflows/composer-require-checker.yml +++ b/.github/workflows/composer-require-checker.yml @@ -31,4 +31,4 @@ jobs: os: >- ['ubuntu-latest'] php: >- - ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] + ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] diff --git a/.github/workflows/mutation.yml b/.github/workflows/mutation.yml index a56769e..d746b42 100644 --- a/.github/workflows/mutation.yml +++ b/.github/workflows/mutation.yml @@ -27,6 +27,6 @@ jobs: os: >- ['ubuntu-latest'] php: >- - ['8.4'] + ['8.5'] secrets: STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d31900..b7144e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 2.2.3 under development -- no changes in this release. +- Enh #81: Add PHP 8.5 support (@vjik) ## 2.2.2 June 03, 2025 diff --git a/README.md b/README.md index c435bc7..5664696 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The package provides [PSR-15](https://www.php-fig.org/psr/psr-15/) middleware fo ## Requirements -- PHP 7.4 or higher. +- PHP 7.4 - 8.5. ## Installation diff --git a/composer.json b/composer.json index d9889d3..f358c85 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ } ], "require": { - "php": "~7.4.0 || 8.0 - 8.4", + "php": "~7.4.0 || 8.0 - 8.5", "ext-hash": "*", "psr/http-factory": "^1.0", "psr/http-factory-implementation": "1.0",