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

[3.x] Laravel 13 support (#1444)

This commit is contained in:
Samuel Štancl 2026-03-18 19:16:25 +01:00 committed by GitHub
parent e1b007946b
commit ab64f4599d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View file

@ -22,7 +22,9 @@ jobs:
php: "8.3" php: "8.3"
- laravel: 12 - laravel: 12
php: "8.3" php: "8.3"
# Ideally we'd run at least one of these on PHP 8.4, however the Dockerfile seems to require some changes for that - laravel: 13
php: "8.3"
# Ideally we'd run at least one of these on PHP 8.4/8.5, however the Dockerfile seems to require some changes for that
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View file

@ -12,15 +12,15 @@
"require": { "require": {
"php": "^8.0", "php": "^8.0",
"ext-json": "*", "ext-json": "*",
"illuminate/support": "^10.0|^11.0|^12.0", "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"facade/ignition-contracts": "^1.0.2", "facade/ignition-contracts": "^1.0.2",
"ramsey/uuid": "^4.7.3", "ramsey/uuid": "^4.7.3",
"stancl/jobpipeline": "^1.8.0", "stancl/jobpipeline": "^1.8.0",
"stancl/virtualcolumn": "^1.5.0" "stancl/virtualcolumn": "^1.5.0"
}, },
"require-dev": { "require-dev": {
"laravel/framework": "^10.0|^11.0|^12.0", "laravel/framework": "^10.0|^11.0|^12.0|^13.0",
"orchestra/testbench": "^8.0|^9.0|^10.0", "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
"league/flysystem-aws-s3-v3": "^3.12.2", "league/flysystem-aws-s3-v3": "^3.12.2",
"doctrine/dbal": "^3.6.0", "doctrine/dbal": "^3.6.0",
"spatie/valuestore": "^1.3.2" "spatie/valuestore": "^1.3.2"