Skip to content

Commit ef05eea

Browse files
authored
Support Laravel 11 (#16)
1 parent 0b5f9d3 commit ef05eea

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest]
1616
php: [8.2, 8.3]
17-
laravel: [10.*]
17+
laravel: [10.*, 11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20+
- laravel: 11.*
21+
testbench: 9.*
22+
carbon: ^2.63
2023
- laravel: 10.*
2124
testbench: 8.8.*
2225
carbon: ^2.63

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"require": {
1919
"php": "^8.2",
2020
"spatie/laravel-package-tools": "^1.14.0",
21-
"illuminate/contracts": "^10.0"
21+
"illuminate/contracts": "^10.0|^11.0"
2222
},
2323
"require-dev": {
2424
"laravel/pint": "^1.13",
25-
"nunomaduro/collision": "^7.8",
25+
"nunomaduro/collision": "^7.8|^8.0",
2626
"nunomaduro/larastan": "^2.0.1",
27-
"orchestra/testbench": "^8.8",
27+
"orchestra/testbench": "^8.8|^9.0",
2828
"pestphp/pest": "^2.20",
2929
"pestphp/pest-plugin-arch": "^2.0",
3030
"pestphp/pest-plugin-laravel": "^2.0",

0 commit comments

Comments
 (0)