Skip to content

Commit f237349

Browse files
authored
Support Laravel 11 (#8)
* Support Laravel 11 * wip * wip
1 parent ae9d4b3 commit f237349

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/run-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest]
1212
php: ['8.3', '8.2', '8.1', '8.0']
13-
laravel: [^8.0, ^9.0, ^10.0]
13+
laravel: [^8.0, ^9.0, ^10.0, ^11.0]
1414
dependency-version: [prefer-lowest, prefer-stable]
1515
exclude:
16+
- php: 8.1
17+
laravel: ^11.0
18+
- php: 8.0
19+
laravel: ^11.0
1620
- php: 8.0
1721
laravel: ^10.0
1822

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
],
1919
"require": {
2020
"php": "^8.0",
21-
"illuminate/database": "^8.0|^9.0|^10.0",
22-
"illuminate/support": "^8.0|^9.0|^10.0"
21+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
22+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
2323
},
2424
"require-dev": {
2525
"phpunit/phpunit": "^9.4",
26-
"vimeo/psalm": "^4.1"
26+
"vimeo/psalm": "^6.0"
2727
},
2828
"autoload": {
2929
"psr-4": {

0 commit comments

Comments
 (0)