From 3920afb5dc538e641c5bd2026de6c3f7938a7379 Mon Sep 17 00:00:00 2001 From: Vincent QUATREVIEUX Date: Wed, 16 Oct 2024 18:01:07 +0200 Subject: [PATCH] chore: Compatibility with PHP 8.4 (#FRAM-177) --- .github/workflows/php.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 5110765..8192ba1 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] name: PHP ${{ matrix.php-versions }} steps: diff --git a/composer.json b/composer.json index 8cf5900..eb34657 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ ], "minimum-stability": "stable", "require": { - "php": "~7.1 | ~8.0.0 | ~8.1.0 | ~8.2.0 | ~8.3.0", + "php": "~7.1 | ~8.0.0 | ~8.1.0 | ~8.2.0 | ~8.3.0 | ~8.4.0", "ext-json": "*", "spomky-labs/base64url": "~2.0", "web-token/jwt-signature": "~1.3|~2.0|~3.0",