Skip to content

Commit

Permalink
Support Laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
ycs77 committed Feb 9, 2022
1 parent d0301c3 commit d7ff9ec
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,20 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [7.3, 7.4, 8.0]
laravel: [7.*, 8.*]
php: [7.3, 7.4, 8.0, 8.1]
laravel: [7.*, 8.*, 9.*]
include:
- laravel: 7.*
testbench: ^5.0
- laravel: 8.*
testbench: ^6.6
testbench: ^6.0
- laravel: 9.*
testbench: ^7.0
exclude:
- laravel: 9.*
php: 7.3
- laravel: 9.*
php: 7.4

name: P${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
],
"require": {
"php": "^7.3|^8.0",
"laravel/framework": "^7.0|^8.0",
"laravel/framework": ">=7.0",
"inertiajs/inertia-laravel": ">=0.5.0"
},
"require-dev": {
"nunomaduro/collision": "^5.3",
"orchestra/testbench": ">=4.0",
"nunomaduro/collision": ">=^5.3",
"orchestra/testbench": ">=^5.0",
"pestphp/pest": "^1.18",
"pestphp/pest-plugin-laravel": "^1.1"
},
Expand Down

0 comments on commit d7ff9ec

Please sign in to comment.