Skip to content

Commit 5ace11d

Browse files
Laravel 12.x Compatibility (#84)
* Bump dependencies for Laravel 12 * Update GitHub Actions for Laravel 12
1 parent 391849c commit 5ace11d

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
1919
php: [8.0, 8.1, '8.2']
20-
laravel: ['9.*', '10.*', '11.0', ^8.71]
20+
laravel: ['9.*', '10.*', '11.0', '12.*', ^8.71]
2121
stability: [prefer-lowest, prefer-stable]
2222
include:
2323
- laravel: 10.*
@@ -28,11 +28,17 @@ jobs:
2828
testbench: 6.*
2929
- laravel: 11.*
3030
testbench: 9.*
31+
- laravel: 12.*
32+
testbench: 10.*
3133
exclude:
3234
- laravel: 11.*
3335
php: 8.0
3436
- laravel: 11.*
3537
php: 8.1
38+
- laravel: 12.*
39+
php: 8.0
40+
- laravel: 12.*
41+
php: 8.1
3642

3743
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3844

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"require": {
1919
"php": "^8.2",
2020
"spatie/laravel-package-tools": "^1.4.3",
21-
"illuminate/contracts": "^8.37|^9|^10.0|^11.0"
21+
"illuminate/contracts": "^8.37|^9|^10.0|^11.0|^12.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",
26-
"pestphp/pest": "^1.18|^2.34",
27-
"pestphp/pest-plugin-laravel": "^1.1|^2.3",
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",
2828
"spatie/laravel-ray": "^1.23",
29-
"vimeo/psalm": "^4.8|^5.6"
29+
"vimeo/psalm": "^4.8|^5.6|^6.5"
3030
},
3131
"autoload": {
3232
"psr-4": {

0 commit comments

Comments
 (0)