Skip to content

Commit c806ec5

Browse files
authored
Add Laravel 9 (#59)
* Add Laravel 9 * Syntax * Fix matrix
1 parent baa455f commit c806ec5

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/run-tests.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,16 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
php: [7.4, 7.3]
23-
laravel: [8.*]
22+
php: [8.1, 8.0, 7.4, 7.3]
23+
laravel: [8.*, 9.*]
2424
dependency-version: [prefer-lowest, prefer-stable]
25+
exclude:
26+
- laravel: 9.*
27+
php: 7.2
28+
- laravel: 9.*
29+
php: 7.3
30+
- laravel: 9.*
31+
php: 7.4
2532

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

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"require": {
1717
"php": "^7.3|^8",
1818
"ext-json": "*",
19-
"laravel/framework": "^8",
19+
"laravel/framework": "^8|^9",
2020
"laravel/telescope": "^4"
2121
},
2222
"require-dev": {
23-
"orchestra/testbench-dusk": "^4|^5|^6",
23+
"orchestra/testbench-dusk": "^4|^5|^6|^7",
2424
"phpunit/phpunit": "^8.5|^9.0"
2525
},
2626
"autoload": {

0 commit comments

Comments
 (0)