-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
90 lines (90 loc) · 2.56 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": "mythteam/starter-kit",
"description": "Project Template Based On the Yii2 advanced template",
"keywords": ["yii2", "framework", "advanced", "project template"],
"homepage": "http://www.mythteam.com/",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/mythteam/start-kit/issues?state=open",
"wiki": "https://github.com/mythteam/start-kit/wiki",
"source": "https://github.com/mythteam/start-kit"
},
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"ext-yaconf": "*",
"light/yii2-ajaxform": "~1.0.0",
"light/yii2-lock-form": "~1.0.0",
"light/yii2-sweet-submit": "~1.0.0",
"yiisoft/yii2": "~2.0.11",
"yiisoft/yii2-bootstrap": "~2.0.5",
"yiisoft/yii2-redis": "~2.0.4",
"yiisoft/yii2-swiftmailer": "~2.0.4",
"kartik-v/yii2-date-range": "~1.6",
"kartik-v/yii2-widget-select2": "~2.0",
"yii2mod/yii2-editable": "*",
"mythteam/yii2-schedule": "~0.1.2",
"kartik-v/yii2-widget-fileinput": "~1.0.4",
"pda/pheanstalk": "~3.0",
"qiniu/php-sdk": "~7.0.8",
"bower-asset/ueditor": "1.4.3.3",
"league/flysystem": "~1.0",
"bocharsky-bw/file-naming-resolver": "^0.3.1"
},
"require-dev": {
"yiisoft/yii2-debug": "dev-master",
"yiisoft/yii2-gii": "dev-master",
"yiisoft/yii2-faker": "~2.0.3",
"light/yii2-generators": "~0.1.2",
"light/yii2-swagger": "~1.0.0",
"codeception/base": "^2.2.3",
"codeception/verify": "~0.3.1"
},
"suggest": {
"bocharsky-bw/file-naming-resolver": "A lightweight library to resolve uploaded files and directories naming using various naming strategies"
},
"autoload": {
"psr-4": {
},
"files": [
"common/helpers/helpers.php"
]
},
"config": {
"process-timeout": 1800,
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
},
"asset-repositories": [
{
"type": "bower-vcs",
"url": "https://github.com/lichunqiang/ueditor.git",
"name": "bower-asset/ueditor"
}
]
},
"scripts": {
"post-root-package-install": [
"composer global require fxp/composer-asset-plugin=~1.*"
],
"post-install-cmd": [
"bower install --allow-root"
],
"update-asset": [
"bower install --allow-root"
],
"cs": [
"php-cs-fixer fix --verbose"
],
"backup": [
"vendor/bin/phpbu --configuration=./backup/phpbu.xml.dist"
]
}
}