mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-04 14:44:05 +00:00
Inlcude Laravel 11 and PHP 8.3 support
This commit is contained in:
parent
8960a83047
commit
2f39ef54b7
3 changed files with 8 additions and 6 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -16,12 +16,14 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- laravel: "^11.0"
|
||||
php: "8.3"
|
||||
- laravel: "^12.0"
|
||||
php: "8.4"
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
- name: Install Composer dependencies
|
||||
run: |
|
||||
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
|
||||
|
|
|
|||
2
.github/workflows/validate.yml
vendored
2
.github/workflows/validate.yml
vendored
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
name: Validate code
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
- name: Check for todo0
|
||||
run: '! grep -r "todo0" --exclude-dir=workflows .'
|
||||
if: always()
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@
|
|||
}
|
||||
],
|
||||
"require": {
|
||||
"php": "^8.4",
|
||||
"php": "^8.3",
|
||||
"ext-json": "*",
|
||||
"illuminate/support": "^12.0",
|
||||
"illuminate/support": "^11.0 || ^12.0",
|
||||
"laravel/tinker": "^2.0",
|
||||
"facade/ignition-contracts": "^1.0.2",
|
||||
"spatie/ignition": "^1.4",
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
"laravel/prompts": "0.*"
|
||||
},
|
||||
"require-dev": {
|
||||
"laravel/framework": "^12.0",
|
||||
"orchestra/testbench": "^10.0",
|
||||
"laravel/framework": "^11.0 || ^12.0",
|
||||
"orchestra/testbench": "^9.0 || ^10.0",
|
||||
"league/flysystem-aws-s3-v3": "^3.12.2",
|
||||
"doctrine/dbal": "^3.6.0",
|
||||
"spatie/valuestore": "^1.2.5",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue