From f1387105f1e08215b46bab40164283caa2a9c5c9 Mon Sep 17 00:00:00 2001 From: Robin van Maasakker Date: Mon, 2 Dec 2024 09:30:17 +0100 Subject: [PATCH] Update PHP version constraints to support PHP 8.4 (#555) * Update PHP version constraints to support PHP 8.4 * Update --------- Co-authored-by: Robin van Maasakker --- .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 90ae694..8349d52 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.2, 8.3] + php: [8.2, 8.3, 8.4] laravel: [10.*, 11.*] dependency-version: [prefer-stable] os: [ubuntu-latest] diff --git a/composer.json b/composer.json index 7eeb75b..983bf15 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^8.2", + "php": "^8.2||^8.3||^8.4", "guzzlehttp/guzzle": "^7.8", "illuminate/support": "^10.0|^11.0", "nesbot/carbon": "^2.71|^3.0",