Skip to content

Commit

Permalink
Add support for Laravel 9 (#3496)
Browse files Browse the repository at this point in the history
* Update composer.json

* Update run-tests.yml

* Update composer.json

* Update CHANGELOG.md
  • Loading branch information
HajMo authored Jan 19, 2022
1 parent e3d9b7e commit 5d51add
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 5d51add

Please sign in to comment.