Skip to content

Commit 1b968af

Browse files
Laravel 13.x Compatibility (#96)
* Bump dependencies for Laravel 13 * Update GitHub Actions for Laravel 13
1 parent 5ace11d commit 1b968af

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
19-
php: [8.0, 8.1, '8.2']
20-
laravel: ['9.*', '10.*', '11.0', '12.*', ^8.71]
19+
php: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
20+
laravel: ['9.*', '10.*', '11.0', '12.*', '13.*', ^8.71]
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
2323
- laravel: 10.*
@@ -30,6 +30,8 @@ jobs:
3030
testbench: 9.*
3131
- laravel: 12.*
3232
testbench: 10.*
33+
- laravel: 13.*
34+
testbench: 11.*
3335
exclude:
3436
- laravel: 11.*
3537
php: 8.0
@@ -39,6 +41,12 @@ jobs:
3941
php: 8.0
4042
- laravel: 12.*
4143
php: 8.1
44+
- laravel: 13.*
45+
php: '8.0'
46+
- laravel: 13.*
47+
php: '8.1'
48+
- laravel: 13.*
49+
php: '8.2'
4250

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

composer.json

Lines changed: 4 additions & 4 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.4.3",
21-
"illuminate/contracts": "^8.37|^9|^10.0|^11.0|^12.0"
21+
"illuminate/contracts": "^8.37|^9|^10.0|^11.0|^12.0|^13.0"
2222
},
2323
"require-dev": {
2424
"nunomaduro/collision": "^5.3|^6.1|^8.0",
25-
"orchestra/testbench": "^6.15|^7.0|^8.0|^9.0|^10.0",
26-
"pestphp/pest": "^1.18|^2.34|^3.7",
27-
"pestphp/pest-plugin-laravel": "^1.1|^2.3|^3.1",
25+
"orchestra/testbench": "^6.15|^7.0|^8.0|^9.0|^10.0|^11.0",
26+
"pestphp/pest": "^1.18|^2.34|^3.7|^4.4",
27+
"pestphp/pest-plugin-laravel": "^1.1|^2.3|^3.1|^4.1",
2828
"spatie/laravel-ray": "^1.23",
2929
"vimeo/psalm": "^4.8|^5.6|^6.5"
3030
},

0 commit comments

Comments
 (0)