Skip to content

Commit 59e1854

Browse files
authored
Merge pull request #6 from eXolnet/feature/laravel-9
feat: add support for laravel 9
2 parents d7ffe6e + 388c3eb commit 59e1854

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,21 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
php: [7.3, 7.4, 8.0, 8.1]
13-
laravel: [8.*]
13+
laravel: [8.*, 9.*]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
exclude:
1616
- php: 8.1
1717
laravel: 8.*
1818
dependency-version: prefer-lowest
19+
- php: 7.3
20+
laravel: 9.*
21+
- php: 7.4
22+
laravel: 9.*
1923
include:
2024
- laravel: 8.*
2125
testbench: 6.*
26+
- laravel: 9.*
27+
testbench: 7.*
2228
#Testing php 8.1 with Laravel 8.74 as its lowest
2329
- php: 8.1
2430
laravel: ^8.74

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
],
2323
"require": {
2424
"php": "^7.3|^8.0",
25-
"illuminate/support": "^8.0",
25+
"illuminate/support": "^8.0|^9.0",
2626
"laravelcollective/html": "^6.2.1"
2727
},
2828
"require-dev": {
2929
"exolnet/phpcs-config": "^2.0",
3030
"mockery/mockery": "^1.4",
31-
"orchestra/testbench": "^6.0",
31+
"orchestra/testbench": "^6.0|^7.0",
3232
"phpunit/phpunit": "^9.3.3",
3333
"squizlabs/php_codesniffer": "^3.6"
3434
},

0 commit comments

Comments
 (0)