feat: Add Laravel 13 support (#20023)

* feat: Add Laravel 13 support

* Fix routing differences in L13

* Update Pest

* Update PrepareCsvExport.php

* Update tests.yml

---------

Co-authored-by: Pranab Acharya <pranab_acharya@yahoo.com>
Co-authored-by: Dan Harrin <git@danharrin.com>
This commit is contained in:
Pranab Acharya
2026-06-12 21:29:28 +05:30
committed by GitHub
parent 19d2b3e1b0
commit 5a7e880bda
20 changed files with 1152 additions and 938 deletions
+7 -2
View File
@@ -17,10 +17,15 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.3, 8.2]
laravel: [12.*, 11.*]
php: [8.4, 8.3, 8.2]
laravel: [13.*, 12.*, 11.*]
dependency-version: [prefer-stable]
exclude:
- laravel: 13.*
php: 8.2
include:
- laravel: 13.*
testbench: 11.*
- laravel: 12.*
testbench: 10.*
- laravel: 11.*
+9 -2
View File
@@ -17,10 +17,17 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.3, 8.2]
laravel: [12.*, 11.*, 10.*]
php: [8.4, 8.3, 8.2]
laravel: [13.*, 12.*, 11.*, 10.*]
dependency-version: [prefer-stable]
exclude:
- laravel: 13.*
php: 8.2
- laravel: 10.*
php: 8.4
include:
- laravel: 13.*
testbench: 11.*
- laravel: 12.*
testbench: 10.*
- laravel: 11.*