forked from iiYii/getyii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
86 lines (86 loc) · 2.46 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
{
"name": "iiyii/getyii",
"description": "Yii 2 Community",
"keywords": [
"yii2",
"framework",
"advanced",
"community",
"application template"
],
"homepage": "https://github.com/iiYii/getyii/",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/iiYii/getyii/issues?state=open",
"forum": "http://www.getyii.com/",
"wiki": "https://github.com/iiYii/getyii/wiki/",
"source": "https://github.com/iiYii/getyii"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "2.0.*@dev",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"2amigos/yii2-selectize-widget": "*",
"bower-asset/font-awesome": "*",
"bower-asset/marked": "*",
"bower-asset/highlightjs": "*",
"bower-asset/metisMenu": "*",
"bower-asset/emojify.js": "*",
"bower-asset/PACE": "*",
"bower-asset/localforage": "*",
"bower-asset/At.js": "*",
"yiisoft/yii2-authclient": "*",
"yzalis/identicon": "*",
"funson86/yii2-setting": "*",
"yiisoft/yii2-imagine": "^2.0",
"kartik-v/yii2-icons": "*",
"hightman/xunsearch": "*@beta",
"kartik-v/yii2-widget-select2": "*",
"yiier/yii2-backup": "*",
"2amigos/yii2-qrcode-helper": "~1.0",
"kop/yii2-scroll-pager": "dev-master",
"devgroup/yii2-tag-dependency-helper": "*",
"trntv/yii2-aceeditor": "dev-master",
"yiier/yii2-return-url": "*",
"yiier/yii2-merit": "*",
"yiisoft/yii2-httpclient": "dev-master",
"understeam/yii2-slack": "~0.1",
"dmstr/yii2-adminlte-asset": "2.*",
"enyo/dropzone": "^4.3"
},
"require-dev": {
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-faker": "*"
},
"config": {
"process-timeout": 1800
},
"autoload": {
"psr-4": { "common\\": "common" },
"files": [
"common/components/GlobalFunctions.php"
]
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
],
"post-install-cmd": [
"common\\components\\ComposerInstaller::initProject"
],
"post-update-cmd": [
"common\\components\\ComposerInstaller::initProject"
]
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}