forked from benbanfa/yii2-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.94 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
{
"name": "benbanfa/yii2-project-template",
"description": "benbanfa/yii2-project-template",
"keywords": ["yii2", "framework", "project template"],
"type": "project",
"license": "BSD-3-Clause",
"autoload": {
"psr-4": {
"common\\": "common/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.3.0",
"benbanfa/exclude-composer-assets": "dev-master",
"yiisoft/yii2": "~2.0.14",
"yiisoft/yii2-bootstrap": "~2.0.0",
"yiisoft/yii2-swiftmailer": "~2.0.0 || ~2.1.0",
"vlucas/phpdotenv": "^3",
"yiisoft/yii2-redis": "^2.0",
"yiisoft/yii2-queue": "^2.2",
"symfony/options-resolver": "^4",
"benbanfa/raddy": "dev-master",
"kartik-v/yii2-date-range": "^1.7",
"kartik-v/yii2-field-range": "^1.3",
"benbanfa/common": "dev-master",
"benbanfa/user": "dev-master"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.1.0",
"yiisoft/yii2-gii": "~2.1.0",
"yiisoft/yii2-faker": "~2.0.0",
"codeception/codeception": "^3",
"phpunit/phpunit": "^8",
"codeception/verify": "~1.0.0",
"symfony/browser-kit": ">=2.7 <=4.2.4",
"facebook/webdriver": "^1.6"
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"secure-http": false
},
"repositories": [
{
"packagist.org": false
},
{
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
},
{
"type": "vcs",
"url": "ssh://vcs@dx.wangcaigu.cn/source/raddy.git"
},
{
"type": "vcs",
"url": "ssh://vcs@dx.wangcaigu.cn/source/benbanfa-user.git"
},
{
"type": "vcs",
"url": "ssh://vcs@dx.wangcaigu.cn/source/benbanfa-common.git"
}
]
}