Skip to content

Commit

Permalink
Add support for Laravel 9 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelhoogantink authored Mar 7, 2022
1 parent da6aedc commit 69c3fa3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: true
matrix:
php: [8.0, 7.4, 7.3, 7.2, 7.1]
laravel: [^8.0, ^7.0, ^6.0, ^5.5]
laravel: [^9.0, ^8.0, ^7.0, ^6.0, ^5.5]
stability: [prefer-lowest, prefer-stable]
include:
- laravel: ^5.5
Expand All @@ -20,6 +20,8 @@ jobs:
testbench: ^5.0
- laravel: ^8.0
testbench: ^6.0
- laravel: ^9.0
testbench: ^7.0
exclude:
- laravel: ^5.5
stability: prefer-lowest
Expand All @@ -29,8 +31,16 @@ jobs:
laravel: ^7.0
- php: 7.1
laravel: ^8.0
- php: 7.1
laravel: ^9.0
- php: 7.2
laravel: ^8.0
- php: 7.2
laravel: ^9.0
- php: 7.3
laravel: ^9.0
- php: 7.4
laravel: ^9.0
- php: 8.0
laravel: ^5.5

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
],
"require": {
"php": "^7.1 || ^8.0",
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0",
"illuminate/validation": "^5.5|| ^6.0 || ^7.0 || ^8.0"
"illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0|| ^9.0",
"illuminate/validation": "^5.5|| ^6.0 || ^7.0 || ^8.0|| ^9.0"
},
"require-dev": {
"doctrine/dbal": "^2.9",
Expand Down

0 comments on commit 69c3fa3

Please sign in to comment.