Skip to content

Commit d6bb07f

Browse files
authored
Merge pull request #61 from laravel-shift/l13-compatibility
Laravel 13.x Compatibility
2 parents 7a4345c + 318a857 commit d6bb07f

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
15-
php: [8.0, 8.1, 8.2]
16-
laravel: ['9.*', '10.*', '11.*', '12.*']
15+
php: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
16+
laravel: ['9.*', '10.*', '11.*', '12.*', '13.*']
1717
stability: [prefer-lowest, prefer-stable]
1818
exclude:
1919
- laravel: 9.*
@@ -30,6 +30,12 @@ jobs:
3030
php: 8.0
3131
- laravel: 12.*
3232
php: 8.1
33+
- laravel: 13.*
34+
php: '8.0'
35+
- laravel: 13.*
36+
php: '8.1'
37+
- laravel: 13.*
38+
php: '8.2'
3339
include:
3440
- laravel: 9.*
3541
testbench: 7.*
@@ -39,6 +45,8 @@ jobs:
3945
testbench: 9.*
4046
- laravel: 12.*
4147
testbench: 10.*
48+
- laravel: 13.*
49+
testbench: 11.*
4250

4351
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
4452

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
"require": {
2121
"php": ">=7.1.0",
2222
"facade/ignition-contracts": "^1.0",
23-
"illuminate/support": "^9.19|^10.0|^11.0|^12.0"
23+
"illuminate/support": "^9.19|^10.0|^11.0|^12.0|^13.0"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
27-
"phpunit/phpunit": "^8.3|^9.0|^10.5|^11.5.3",
26+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0",
27+
"phpunit/phpunit": "^8.3|^9.0|^10.5|^11.5.3|^12.5.12",
2828
"vimeo/psalm": "^4.0|^5.22|^6.7"
2929
},
3030
"autoload": {

0 commit comments

Comments
 (0)