From c37af64ffd1160db42630a0c9864dd221c38dc1c Mon Sep 17 00:00:00 2001 From: Michael Diodone Date: Thu, 12 Oct 2023 14:27:46 +0200 Subject: [PATCH] Add PHP 8.2 compatibility --- .github/workflows/ci.yaml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3eae125..e957512 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: [ '7.4', '8.0', '8.1' ] + php-versions: [ '7.4', '8.0', '8.1', '8.2' ] steps: - uses: actions/checkout@v2 diff --git a/composer.json b/composer.json index 9890cb1..243c4eb 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ } ], "require": { - "php": "^7.4 | ^8.0 | ^8.1", + "php": "^7.4 | ^8.0 | ^8.1 | ^8.2", "ext-json": "*", "researchgate/libris": "^2.3.0" },