From 00efc25de591691e70264623ce2b7d979a22a933 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 29 Nov 2024 16:40:30 +0100 Subject: [PATCH] feat: add PHP 8.4 support --- .github/workflows/continuous_integration.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 7c8108e..76aed22 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: [ '8.1', '8.2', '8.3' ] + php: [ '8.1', '8.2', '8.3', '8.4' ] name: Tests on PHP ${{ matrix.php }} steps: - name: Checkout source code diff --git a/composer.json b/composer.json index cc14785..710aa8a 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ } ], "require": { - "php": "^8.1|^8.2|^8.3", + "php": "^8.1|^8.2|^8.3|^8.4", "ext-json": "*", "ext-mbstring": "*", "guzzlehttp/psr7": "^1 || ^2.1",