From 5e208f145ce3f88a88a91de6e872b93dc4ab949b Mon Sep 17 00:00:00 2001 From: Lloric Mayuga Garcia Date: Fri, 21 Feb 2025 22:24:42 +0800 Subject: [PATCH] Update PHP version requirements in composer.json and run-tests.yml Signed-off-by: Lloric Mayuga Garcia --- .github/workflows/run-tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 1386c67..b9603d0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.4, 8.3, 8.2, 8.1, 8.0] + php: [8.4, 8.3, 8.2] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 3c4e229..dc71a3e 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ } ], "require": { - "php": "^8.0", + "php": "^8.2", "ext-json": "*", "guzzlehttp/guzzle": "^7.5.1" },