-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathcomposer.json
executable file
·95 lines (95 loc) · 2.69 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
91
92
93
94
95
{
"name": "yidashi/yii2cmf",
"description": "yii2内容管理框架",
"keywords": ["yii2", "cmf", "yii2cmf"],
"homepage": "http://www.51siyuan.cn/",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yidashi/yii2cmf/issues?state=open",
"forum": "http://www.51siyuan.cn/suggest/",
"wiki": "http://www.51siyuan.cn/wiki/",
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yidashi/yii2cmf"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.5",
"yiisoft/yii2": ">=2.0.9",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"yiisoft/yii2-authclient": "~2.1.0",
"yiisoft/yii2-imagine": "^2.0",
"aferrandini/phpqrcode": "1.0.1",
"mobiledetect/mobiledetectlib": "^2.8",
"omnilight/yii2-scheduling": "*",
"vlucas/phpdotenv": "^2.0",
"vova07/yii2-imperavi-widget": "*",
"2amigos/yii2-editable-widget": "0.1.*",
"raulfraile/distill": "@stable",
"fabpot/goutte": "^3.1",
"kartik-v/yii2-widget-select2": "*",
"kartik-v/yii2-widget-datetimepicker": "^1.4",
"kartik-v/yii2-widget-datepicker": "^1.3",
"bower-asset/blueimp-file-upload" : "*",
"bower-asset/editor.md": "*",
"creocoder/yii2-flysystem": "*",
"qiniu/php-sdk": "^7.1",
"overtrue/pinyin": "^4.0",
"symfony/var-dumper": "^3.4",
"2amigos/yii2-date-picker-widget": "^1.0"
},
"require-dev": {
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-faker": "*"
},
"autoload": {
"files": [
"common/helpers/function.php"
]
},
"scripts": {
"post-install-cmd": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');@chmod('.env', 0766);\"",
"yii\\composer\\Installer::postCreateProject"
],
"post-root-package-install" :[
"php -r \"file_exists('.env') || copy('.env.example', '.env');@chmod('.env', 0766);\"",
"yii\\composer\\Installer::postCreateProject"
]
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
},
"secure-http": false
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"cache": "0777",
"web/assets": "0777",
"web/storage": "0777",
"web/admin/assets": "0777",
"api/runtime": "0777",
"backend/runtime": "0777",
"frontend/runtime": "0777",
"web/api/assets": "0777"
}
]
}
},
"repositories": {
"0": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"packagist": {
"type": "composer",
"url": "https://mirrors.aliyun.com/composer/"
}
}
}