Skip to content

Commit

Permalink
Allow Laravel 10 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh authored Feb 5, 2023
1 parent 076a1b0 commit 0a81294
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,12 @@ jobs:

strategy:
matrix:
php: [8.2, 8.1, 8.0, 7.4, 7.3]
laravel: [8.*, 9.*]
php: [8.2, 8.1, 8.0]
laravel: [10.*, 9.*]
dependency-version: [prefer-stable]
exclude:
- laravel: 9.*
php: 7.2
- laravel: 9.*
php: 7.3
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 8.0

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
}
],
"require": {
"php": "^7.3|^8",
"php": "^8",
"ext-json": "*",
"laravel/framework": "^8|^9",
"laravel/framework": "^9|^10",
"laravel/telescope": "^4"
},
"require-dev": {
"orchestra/testbench-dusk": "^6|^7"
"orchestra/testbench-dusk": "^6|^7|^8"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 0a81294

Please sign in to comment.