From f7de960aabeba6c161ff96667015f168730ca484 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Wed, 20 Nov 2024 11:51:09 +0100 Subject: [PATCH] Support for PHP 8.4 --- .github/workflows/run-tests.yml | 7 ++----- README.md | 2 +- composer.json | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 195a754..4dbc822 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,17 +11,14 @@ jobs: strategy: fail-fast: true matrix: - php: [8.3, 8.2, 8.1] - laravel: ['10.*', '11.*'] + php: [8.4, 8.3, 8.2] + laravel: ["10.*", "11.*"] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: 8.* - laravel: 11.* testbench: 9.* - exclude: - - laravel: 11.* - php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/README.md b/README.md index feb5d9f..ff4f3c2 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ ## Requirements -* PHP 8.1+ +* PHP 8.2+ * Laravel 10.0 ## Installation diff --git a/composer.json b/composer.json index 88c0013..27ebd29 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^8.1 || ^8.2 || ^8.3", + "php": "^8.2 || ^8.3 || ^8.4", "illuminate/support": " ^10.0 || ^11.0" }, "require-dev": {