-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (57 loc) · 1.49 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
{
"name": "muggle",
"description": "muggle base",
"keywords": ["muggle"],
"homepage": "http://muggle.com/",
"type": "project",
"license": "Commercial",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "^2.0.13.0",
"yiisoft/yii2-redis": "2.0.7",
"hightman/xunsearch": "*",
"hightman/httpclient": "dev-master",
"zircote/swagger-php": "^2.0",
"bower-asset/swagger-ui": "2.2.10",
"endroid/qr-code": "^3.2",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.0"
},
"config": {
"process-timeout": 1800,
"github-oauth": {
},
"fxp-asset": {
"installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
},
"autoload": {
"psr-4": {
"app\\components\\": "components"
}
},
"scripts": {
"post-install-cmd": [
"yii\\composer\\Installer::postCreateProject",
"app\\components\\Installer::postInstall"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"static/uploads": "0777",
"yii": "0755"
}
]
}
}
}