Skip to content

Commit d444eed

Browse files
authored
Merge pull request #13 from cesargb/l9
add support to L9
2 parents cc0d840 + 2a61020 commit d444eed

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [7.3, 7.4, 8.0, 8.1]
12-
laravel: [8.*]
11+
php: [8.0, 8.1]
12+
laravel: [8.*, 9.*]
1313
dependency-version: [prefer-stable]
1414
include:
15+
- laravel: 9.*
16+
testbench: 7.*
1517
- laravel: 8.*
1618
testbench: 6.*
1719

@@ -42,7 +44,7 @@ jobs:
4244
strategy:
4345
fail-fast: false
4446
matrix:
45-
php: [7.3, 7.4, 8.0]
47+
php: [7.4, 8.0]
4648
laravel: [6.*]
4749
dependency-version: [prefer-stable]
4850
include:

composer.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
],
1313
"type": "library",
1414
"require": {
15-
"php": "^7.2|^8.0",
16-
"illuminate/console": "^6.0|^8.0",
17-
"illuminate/database": "^6.0|^8.0",
18-
"illuminate/events": "^6.0|^8.0",
19-
"illuminate/support": "^6.0|^8.0"
15+
"php": "^7.4|^8.0",
16+
"illuminate/console": "^6.0|^8.0|^9.0",
17+
"illuminate/database": "^6.0|^8.0|^9.0",
18+
"illuminate/events": "^6.0|^8.0|^9.0",
19+
"illuminate/support": "^6.0|^8.0|^9.0"
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "^7.0|^8.0|^9.0",
23-
"orchestra/testbench": "^4.0|^6.0",
22+
"phpunit/phpunit": "^8.0|^9.0",
23+
"orchestra/testbench": "^4.0|^6.0|^7.0",
2424
"laravel/legacy-factories": "^1.0.4"
2525
},
2626
"autoload": {
@@ -43,12 +43,13 @@
4343
"email": "[email protected]"
4444
}
4545
],
46-
"minimum-stability": "stable",
4746
"extra": {
4847
"laravel": {
4948
"providers": [
5049
"Cesargb\\Database\\Support\\CascadeDeleteServiceProvider"
5150
]
5251
}
53-
}
52+
},
53+
"minimum-stability": "dev",
54+
"prefer-stable": true
5455
}

0 commit comments

Comments
 (0)