From c013a93d1b074e70dfea2ee5b250aec8e86bb516 Mon Sep 17 00:00:00 2001 From: Clem Blanco Date: Thu, 7 Nov 2024 14:45:40 +0100 Subject: [PATCH] revert: re-introduce php 8.1 support for L 9+10 (#23) --- .github/workflows/run-tests.yml | 5 ++++- composer.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 832a25d..2ca1b09 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,8 +8,11 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.2 ] + php: [ 8.1, 8.2 ] laravel: [ 9.*, 10.*, 11.* ] + exclude: + - laravel: 11.* + php: 8.1 include: - laravel: 9.* testbench: 7.* diff --git a/composer.json b/composer.json index 6ff8502..2bc8d9c 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ } ], "require": { - "php": "^8.2", + "php": "^8.1", "illuminate/filesystem": "^9.0|^10.0|^11.0", "illuminate/mail": "^9.0|^10.0|^11.0", "illuminate/support": "^9.0|^10.0|^11.0",