From 484deb27b7e4f4b44dcafcb52609e0ae603150a9 Mon Sep 17 00:00:00 2001 From: Art4 Date: Mon, 6 Oct 2025 22:10:55 +0200 Subject: [PATCH 1/2] run github actions with php 8.4, allow PHP 8.5 --- .github/workflows/code-style.yml | 2 +- .github/workflows/phpstan.yml | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index c3a1b19..684159f 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php: ['8.3'] + php: ['8.4'] name: "Check code style | PHP ${{ matrix.php }}" diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index cacda84..3720932 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: operating-system: ['ubuntu-latest'] - php: ['8.3'] + php: ['8.4'] steps: - name: Checkout diff --git a/composer.json b/composer.json index dd35875..25c6aa2 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ } ], "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.64", From 0428a8919c4c79ba13b315325cece64e0b42e9ca Mon Sep 17 00:00:00 2001 From: Art4 Date: Mon, 6 Oct 2025 22:12:26 +0200 Subject: [PATCH 2/2] update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1446d20..a39c776 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased](https://github.com/Art4/json-api-client/compare/1.3.0...v1.x) +### Added + +- Add support for PHP 8.5 + ## [1.3.0 - 2024-10-11](https://github.com/Art4/json-api-client/compare/1.2.0...1.3.0) ### Added