diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index cce2951dd..c1ab2e47b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -24,10 +24,12 @@ jobs: strategy: matrix: php: [7.2, 7.3, 7.4, 8.0, 8.1] - laravel: [8, 7, 6, 5.8] + laravel: [9, 8, 7, 6, 5.8] dependency-version: [prefer-stable] os: [ubuntu-latest] include: + - laravel: 9 + testbench: 7.* - laravel: 8 testbench: 6.* - laravel: 7 @@ -37,6 +39,12 @@ jobs: - laravel: 5.8 testbench: 3.8.* exclude: + - laravel: 9 + php: 7.4 + - laravel: 9 + php: 7.3 + - laravel: 9 + php: 7.2 - laravel: 8 php: 7.2 - laravel: 7 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a1a6765b..23aa246b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - Fix return type of `FromQuery::query()` +- Support Laravel 9 ## [3.1.35] - 2022-01-04 diff --git a/composer.json b/composer.json index 634f6f712..21c368ce5 100644 --- a/composer.json +++ b/composer.json @@ -23,10 +23,10 @@ "ext-json": "*", "php": "^7.0|^8.0", "phpoffice/phpspreadsheet": "^1.18", - "illuminate/support": "5.8.*|^6.0|^7.0|^8.0" + "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0" }, "require-dev": { - "orchestra/testbench": "^6.0", + "orchestra/testbench": "^6.0|^7.0", "predis/predis": "^1.1" }, "autoload": {