From 910ac3eb0ab5dd71ad8f497acd2e5d9f93672327 Mon Sep 17 00:00:00 2001 From: craig410 Date: Tue, 24 Sep 2024 16:40:05 +0100 Subject: [PATCH] Support and test on PHP8.3 --- .github/workflows/test.yaml | 4 ++++ CHANGELOG.md | 4 ++++ composer.json | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index eb5a85c7..39524ef1 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,6 +17,7 @@ jobs: - '8.0' - '8.1' - '8.2' + - '8.3' dependencies: - 'default' koharness_modules: @@ -32,6 +33,9 @@ jobs: - php_version: '8.2' dependencies: 'lowest' koharness_modules: 'all-modules' + - php_version: '8.3' + dependencies: 'lowest' + koharness_modules: 'all-modules' steps: - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1554d0a4..a42702eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ You're really going to want to read this. ## Unreleased +## 4.12.0 (2024-09-24) + +* Support PHP 8.3 + ## 4.11.0 (2024-09-23) * Add `Request::jsonBody` and `Request::jsonBodyArray` for easy access to JSON request bodies. diff --git a/composer.json b/composer.json index cd91fa8a..e34c3ee5 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "php": "~8.0.0 || ~8.1.0 || ~8.2.0", + "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", "ext-mbstring": "*", "ext-ctype": "*" },