From 75524e3ab547a038d49d97e5b73ed1007e8826b4 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 3 Nov 2023 15:36:33 +0100 Subject: [PATCH] chore: add PHP 8.3 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 bf6399d..f6da782 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: [ '7.4', '8.0', '8.1', '8.2' ] + php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ] name: Tests on PHP ${{ matrix.php }} steps: - name: Checkout source code diff --git a/composer.json b/composer.json index 0bd4ea5..814b62b 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ } ], "require": { - "php": "^7.4|^8.0|^8.1|^8.2", + "php": "^7.4|^8.0|^8.1|^8.2|^8.3", "ext-json": "*", "ext-mbstring": "*", "guzzlehttp/psr7": "^1 || ^2.1",