-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
90 lines (90 loc) · 2.99 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "yiiplus/scaffold",
"description": "scaffold是一个基于Yii2高级项目模版工程化实现的应用程序",
"keywords": ["yii2", "framework", "scaffold", "project template"],
"homepage": "https://github.com/yiiplus/",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiiplus/scaffold/issues?state=open",
"source": "https://github.com/yiiplus/scaffold"
},
"authors": [
{
"name": "Hongbin Chen",
"email": "hongbin.chen@aliyun.com"
},
{
"name": "xiankun Geng",
"email": "ge2x3k2@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0",
"yiisoft/yii2": "^2.0.0",
"yiisoft/yii2-bootstrap": "^2.0.0",
"yiisoft/yii2-swiftmailer": "^2.0.0",
"yiisoft/yii2-authclient": "^2.0.0",
"yiisoft/yii2-httpclient": "~2.0.0",
"yiisoft/yii2-jui": "^2.0.0",
"yiisoft/yii2-redis": "~2.0.0",
"yiisoft/yii2-queue": "~2.0.0",
"yiisoft/yii2-elasticsearch": "~2.0.0",
"yiiplus/yii2-fis-smarty": "^2.0.0",
"yiiplus/yii2-desktop": "^2.0.0",
"yiiplus/yii2-kvstore": "^2.0.0",
"yiiplus/yii2-smser": "dev-develop",
"yiiplus/yii2-mailer": "dev-develop",
"yiiplus/yii2-storage": "dev-develop",
"yiiplus/yii2-app-version": "dev-develop",
"yiiplus/yii2-passport": "dev-develop",
"firebase/php-jwt": "^5.0.0"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0",
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-faker": "~2.0.0",
"codeception/base": "^2.4.0",
"codeception/verify": "~1.0.0",
"phpunit/phpunit": "~6.5.5",
"squizlabs/php_codesniffer": "^3.0.0",
"phpmd/phpmd": "^2.0.0",
"bizley/migration": "^2.3"
},
"config": {
"secure-http": false,
"process-timeout": 3600
},
"repositories":[
{
"type": "composer",
"url": "https://packagist.laravel-china.org"
},
{
"type": "composer",
"url": "http://packagist.yiiplus.com"
}
],
"scripts": {
"app:migrate": [
"./yii migrate --migrationPath=@yii/rbac/migrations/ --interactive=0",
"./yii migrate --migrationPath=@yiiplus/desktop/migrations/ --interactive=0",
"./yii migrate --migrationPath=@yiiplus/kvstore/migrations/ --interactive=0",
"./yii migrate --interactive=0"
],
"docker:build": [
"php init --env=development --overwrite=y",
"@docker:start",
"composer install --prefer-dist -vvv",
"docker-compose exec -T cgi composer run-script app:migrate",
"docker-compose ps"
],
"docker:start": [
"docker-compose up --force-recreate -d"
],
"docker:cleanup": [
"docker-compose rm -fsv"
]
}
}