From ecb165e176a28c7b06b914ca040ff53b62f82924 Mon Sep 17 00:00:00 2001 From: Manuel Reinhard Date: Wed, 20 Nov 2024 15:42:04 +0100 Subject: [PATCH] Add support for PHP 8.4 --- .github/workflows/ci.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10ce4374..14fc0d97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - php: ['8.1', '8.2', '8.3'] + php: ['8.1', '8.2', '8.3', '8.4'] stability: ['prefer-lowest', 'prefer-stable'] name: PHP Tests ${{ matrix.php }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index c82beb3f..dce48b25 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "type": "library", "license": "MIT", "require": { - "php": "~8.1.0|~8.2.0|~8.3.0", + "php": "~8.1.0|~8.2.0|~8.3.0|~8.4.0", "ext-dom": "*", "ext-bcmath": "*", "symfony/validator": "^4.4|^5.0|^6.0|^7.0",