Skip to content

Commit 3544b71

Browse files
Copilotstevebauman
andcommitted
Add Laravel 13 compatibility
Co-authored-by: stevebauman <6421846+stevebauman@users.noreply.github.com>
1 parent 2f08d09 commit 3544b71

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ jobs:
1414
matrix:
1515
os: [ ubuntu-latest ]
1616
php: [ 8.4, 8.3, 8.2, 8.1 ]
17-
laravel: [ 12.*, 11.*, 10.*, 9.* ]
17+
laravel: [ 13.*, 12.*, 11.*, 10.*, 9.* ]
1818
dependency-version: [ prefer-stable ]
1919
include:
20+
- laravel: 13.*
21+
testbench: 11.*
2022
- laravel: 12.*
2123
testbench: 10.*
2224
- laravel: 11.*
@@ -26,6 +28,10 @@ jobs:
2628
- laravel: 9.*
2729
testbench: 7.*
2830
exclude:
31+
- laravel: 13.*
32+
php: 8.1
33+
- laravel: 13.*
34+
php: 8.2
2935
- laravel: 12.*
3036
php: 8.1
3137
- laravel: 12.*

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"require": {
1515
"php": ">=8.0",
1616
"laravel/socialite": "^5.0",
17-
"illuminate/support": "^9.0|^10.0|^11.0|^12.0"
17+
"illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0"
1818
},
1919
"require-dev": {
2020
"pestphp/pest": "^1.0|^2.0|^3.0",
2121
"phpunit/phpunit": "^9.0|^10.0|^11.0",
22-
"orchestra/testbench": "^7.0|^8.0|^9.0"
22+
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0"
2323
},
2424
"minimum-stability": "dev",
2525
"prefer-stable": true,

0 commit comments

Comments
 (0)