1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 08:24:04 +00:00
This commit is contained in:
Samuel Štancl 2021-12-13 13:09:16 +01:00
parent f12c826df5
commit 9883219544
4 changed files with 17 additions and 13 deletions

View file

@ -11,17 +11,17 @@
],
"require": {
"ext-json": "*",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/support": "dev-master",
"facade/ignition-contracts": "^1.0",
"ramsey/uuid": "^3.7|^4.0",
"stancl/jobpipeline": "^1.0",
"stancl/virtualcolumn": "^1.0"
"stancl/jobpipeline": "dev-master",
"stancl/virtualcolumn": "dev-master"
},
"require-dev": {
"vlucas/phpdotenv": "^3.3|^4.0|^5.0",
"laravel/framework": "^6.0|^7.0|^8.0",
"orchestra/testbench-browser-kit": "^4.0|^5.0|^6.0",
"league/flysystem-aws-s3-v3": "~1.0",
"laravel/framework": "dev-master",
"orchestra/testbench-browser-kit": "dev-master",
"league/flysystem-aws-s3-v3": "*",
"doctrine/dbal": "^2.10",
"spatie/valuestore": "^1.2.5"
},
@ -49,6 +49,12 @@
}
}
},
"scripts": {
"docker-up": "PHP_VERSION=8.0.11 docker-compose up -d",
"docker-down": "PHP_VERSION=8.0.11 docker-compose down",
"docker-rebuild": "PHP_VERSION=8.0.11 docker-compose up -d --no-deps --build",
"test": "./test"
},
"minimum-stability": "dev",
"prefer-stable": true
}