Skip to content

Commit 09be5ec

Browse files
Laravel 11.x Compatibility (#42)
* Bump dependencies for Laravel 11 * Update GitHub Actions for Laravel 11
1 parent 7337f32 commit 09be5ec

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/run-tests.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,24 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
os: [ ubuntu-latest ]
17-
php: [ 8.0, 8.1 ]
18-
laravel: [ 9.*, 10.* ]
19-
dependency-version: [ prefer-lowest, prefer-stable ]
16+
os: [ubuntu-latest]
17+
php: [8.0, 8.1, '8.2']
18+
laravel: ['9.*', '10.*', '11.*']
19+
dependency-version: [prefer-lowest, prefer-stable]
2020
include:
2121
- laravel: 10.*
2222
testbench: 8.*
2323
- laravel: 9.*
2424
testbench: 7.*
25+
- laravel: 11.*
26+
testbench: 9.*
2527
exclude:
2628
- laravel: 10.*
2729
php: 8.0
30+
- laravel: 11.*
31+
php: 8.0
32+
- laravel: 11.*
33+
php: 8.1
2834

2935
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3036

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
],
1111
"require": {
1212
"php": "^8.0",
13-
"illuminate/pagination": "^9.0|^10.0",
14-
"illuminate/support": "^9.0|^10.0"
13+
"illuminate/pagination": "^9.0|^10.0|^11.0",
14+
"illuminate/support": "^9.0|^10.0|^11.0"
1515
},
1616
"require-dev": {
1717
"fakerphp/faker": "^1.12",
1818
"laravel/legacy-factories": "^1.0",
19-
"orchestra/testbench": "^7.0|^8.0",
19+
"orchestra/testbench": "^7.0|^8.0|^9.0",
2020
"phpunit/phpunit": "^9.0|^10.0"
2121
},
2222
"autoload": {

0 commit comments

Comments
 (0)