Skip to content

Commit fa96405

Browse files
authored
Merge pull request #62 from cesargb/l9
add support to L9
2 parents 30b75da + b6b4920 commit fa96405

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
php: [7.4, 8.0, 8.1]
16-
laravel: [8.*, 6.*]
16+
laravel: [9.*, 8.*, 6.*]
1717
dependency-version: [prefer-stable]
1818
exclude:
1919
- php: 8.1
2020
laravel: 6.*
21+
- php: 7.4
22+
laravel: 9.*
2123
include:
24+
- laravel: 9.*
25+
testbench: 7.*
2226
- laravel: 8.*
2327
testbench: 6.*
2428
- laravel: 6.*

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"license": "MIT",
2222
"require": {
2323
"php" : "^7.4 || ^8.0",
24-
"illuminate/auth": "^6.0|^8.0",
25-
"illuminate/container": "^6.0|^8.0",
26-
"illuminate/contracts": "^6.0|^8.0",
27-
"illuminate/database": "^6.0|^8.0",
24+
"illuminate/auth": "^6.0|^8.0|^9.0",
25+
"illuminate/container": "^6.0|^8.0|^9.0",
26+
"illuminate/contracts": "^6.0|^8.0|^9.0",
27+
"illuminate/database": "^6.0|^8.0|^9.0",
2828
"laravel/serializable-closure": "^1.0"
2929
},
3030
"autoload": {
@@ -48,7 +48,9 @@
4848
}
4949
},
5050
"require-dev": {
51-
"orchestra/testbench": "^4.0|^6.0",
51+
"orchestra/testbench": "^4.0|^6.0|^7.0",
5252
"phpunit/phpunit": "^7.0|^9.0"
53-
}
53+
},
54+
"minimum-stability": "dev",
55+
"prefer-stable": true
5456
}

0 commit comments

Comments
 (0)