Skip to content

Commit

Permalink
Add Laravel 9 (#59)
Browse files Browse the repository at this point in the history
* Add Laravel 9

* Syntax

* Fix matrix
  • Loading branch information
barryvdh authored Jan 30, 2022
1 parent baa455f commit c806ec5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,16 @@ jobs:

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

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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
"require": {
"php": "^7.3|^8",
"ext-json": "*",
"laravel/framework": "^8",
"laravel/framework": "^8|^9",
"laravel/telescope": "^4"
},
"require-dev": {
"orchestra/testbench-dusk": "^4|^5|^6",
"orchestra/testbench-dusk": "^4|^5|^6|^7",
"phpunit/phpunit": "^8.5|^9.0"
},
"autoload": {
Expand Down

0 comments on commit c806ec5

Please sign in to comment.