From 255201f80bf91a74fdb22528ef97b49dc217bf8b Mon Sep 17 00:00:00 2001 From: Tony Messias Date: Mon, 11 Mar 2024 13:18:39 -0300 Subject: [PATCH] Adds back L9 and PHP 8.0 support --- .github/workflows/tests.yml | 16 ++++++++++++---- composer.json | 10 +++++----- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 615cd0b..18e6847 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,17 +8,25 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2, 8.3] - laravel: [10.*, 11.*] + php: [8.0, 8.1, 8.2, 8.3] + laravel: [9.*, 10.*, 11.*] dependency-version: [prefer-stable] include: + - laravel: 9.* + testbench: 7.* - laravel: 10.* testbench: 8.* - laravel: 11.* testbench: 9.* exclude: - - php: 8.1 - laravel: 11.* + - laravel: 9.* + php: 8.3 + - laravel: 10.* + php: 8.0 + - laravel: 11.* + php: 8.0 + - laravel: 11.* + php: 8.1 name: PHP ${{ matrix.php }} - LARAVEL ${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index de355b4..e2c12fd 100644 --- a/composer.json +++ b/composer.json @@ -17,13 +17,13 @@ } ], "require": { - "php": "^8.1", - "illuminate/database": "^10.0||^11.0", - "illuminate/events": "^10.0||^11.0" + "php": "^8.0", + "illuminate/database": "^9.0||^10.0||^11.0", + "illuminate/events": "^9.0||^10.0||^11.0" }, "require-dev": { - "orchestra/testbench": "^8.0||^9.0", - "phpunit/phpunit": "^10.5", + "orchestra/testbench": "^7.0||^8.0||^9.0", + "phpunit/phpunit": "^9.5.10||^10.5", "tightenco/duster": "^2.7" }, "autoload": {