From 902c00e0f49754841ea96dde34bdf744101eb49a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Vanlerberghe?= Date: Wed, 5 Jun 2024 19:03:32 +0200 Subject: [PATCH] Allow PHP 8.3 (#363) --- .github/workflows/build.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ebab06e99..b49e34f2b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: operating-system: [ubuntu-latest] - php-versions: ["7.4", "8.0", "8.1", "8.2"] + php-versions: ["7.4", "8.0", "8.1", "8.2", "8.3"] composer-args: ["", "--prefer-lowest"] runs-on: ${{ matrix.operating-system }} steps: diff --git a/composer.json b/composer.json index b5990a79a..97b4125b3 100644 --- a/composer.json +++ b/composer.json @@ -37,7 +37,7 @@ } ], "require": { - "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0", + "php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", "ext-pdo": "*", "symfony/yaml": "^3.4 || ^4.1 || ^5.0 || ^6.0 || ^7.0" },