1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-03-21 23:44:03 +00:00

👷 ci(ci): support Laravel 13 in CI workflow

- add Laravel 13 to the CI matrix for testing compatibility
- ensure the project works with the latest Laravel version

 feat(composer): allow Laravel 13 in dependencies

- update illuminate/support to support both Laravel 12 and 13
- modify laravel/framework requirement to include version 13
This commit is contained in:
Jasper Koers 2026-03-18 11:53:22 +01:00
parent 8f3ea6297f
commit 475e83e421
2 changed files with 3 additions and 2 deletions

View file

@ -17,6 +17,7 @@ jobs:
matrix:
include:
- laravel: "^12.0"
- laravel: "^13.0"
steps:
- name: Checkout

View file

@ -18,7 +18,7 @@
"require": {
"php": "^8.4",
"ext-json": "*",
"illuminate/support": "^12.0",
"illuminate/support": "^12.0|^13.0",
"laravel/tinker": "^2.0",
"ramsey/uuid": "^4.7.3",
"stancl/jobpipeline": "2.0.0-rc6",
@ -27,7 +27,7 @@
"laravel/prompts": "0.*"
},
"require-dev": {
"laravel/framework": "^12.0",
"laravel/framework": "^12.0|^13.0",
"orchestra/testbench": "^10.0",
"league/flysystem-aws-s3-v3": "^3.12.2",
"doctrine/dbal": "^3.6.0",