Skip to content

Commit 6604afc

Browse files
authored
Merge pull request #13 from macbookandrew/chore/laravel-11
add Laravel 11 support
2 parents ae76767 + 00d219b commit 6604afc

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

.github/workflows/run-tests.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,23 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest]
16-
php: [8.0,8.1,8.2]
17-
laravel: [9.*,10.*]
16+
php: [8.0, 8.1, 8.2, 8.3]
17+
laravel: [9.*, 10.*, 11.*]
1818
stability: [prefer-stable]
1919
include:
2020
- laravel: 9.*
2121
testbench: ^7.0
2222
- laravel: 10.*
2323
testbench: ^8.0
24+
- laravel: 11.*
25+
testbench: ^9.0
2426
exclude:
2527
- laravel: 10.*
2628
php: 8.0
29+
- laravel: 11.*
30+
php: 8.0
31+
- laravel: 11.*
32+
php: 8.1
2733

2834
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2935

composer.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
],
2525
"require": {
2626
"php": "^8.0",
27-
"illuminate/contracts": "^9.0|^10.0",
28-
"illuminate/database": "^9.0|^10.0",
29-
"illuminate/support": "^9.0|^10.0",
30-
"spatie/laravel-package-tools": "^1.9.2"
27+
"illuminate/contracts": "^9.0|^10.0|^11.0",
28+
"illuminate/database": "^9.0|^10.0|^11.0",
29+
"illuminate/support": "^9.0|^10.0|^11.0",
30+
"spatie/laravel-package-tools": "^1.16"
3131
},
3232
"require-dev": {
3333
"friendsofphp/php-cs-fixer": "^3.2",
34-
"nunomaduro/collision": "^5.3|^6.0",
35-
"orchestra/testbench": "^7.0|^8.0",
36-
"vimeo/psalm": "^4.8"
34+
"nunomaduro/collision": "^5.3|^6.0|^7.0|^8.0",
35+
"orchestra/testbench": "^7.0|^8.0|^9.0",
36+
"vimeo/psalm": "^4.8|^5.0"
3737
},
3838
"autoload": {
3939
"psr-4": {

0 commit comments

Comments
 (0)