Skip to content

Commit

Permalink
Merge pull request #28 from rickselby/laravel-8
Browse files Browse the repository at this point in the history
Support Laravel 8
  • Loading branch information
rickselby authored Oct 8, 2022
2 parents 62a4796 + f479078 commit 053a810
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,19 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.3, 7.4, 8.0]
laravel: [5.8.*, 6.*, 7.*]
php: [7.3, 7.4, 8.0, 8.1, 8.2]
laravel: [6.*, 7.*, 8.*]
exclude:
- php: 8.0
laravel: 5.8.*
- php: 8.1
laravel: 6.*
- php: 8.1
laravel: 7.*
- php: 8.2
laravel: 6.*
- php: 8.2
laravel: 7.*

name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"laravel/framework": "5.8.*|6.*|7.*"
"laravel/framework": "6.*|7.*|8.*"
},
"require-dev": {
"graham-campbell/testbench": "^5.0",
Expand Down

0 comments on commit 053a810

Please sign in to comment.