-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
57 lines (57 loc) · 1.71 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
{
"name": "yiisoft/yii2-app-advanced",
"description": "Yii2 based admin with modular APIS",
"keywords": ["Yii2", "Advance template", "Modular APIS", "Backend", "CMS"],
"homepage": "http://nadeemakhtar.info",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii2/issues?state=open",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii",
"source": "https://github.com/yiisoft/yii2"
},
"authors": [
{
"name": "Nadeem Akhtar",
"email": "nadeemakhtar.se@gmail.com"
}
],
"repositories": [
{
"url": "https://github.com/nadeemse/yii2-oauth2-server.git",
"type": "git"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": ">=2.0.6",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"mdmsoft/yii2-admin": "~2.0",
"nadeemse/yii2-oauth2-server": "dev-master",
"kartik-v/yii2-widgets": "*",
"ramsey/uuid": "^3.2",
"frostealth/yii2-aws-s3": "~1.0@stable"
},
"require-dev": {
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-faker": "*"
},
"config": {
"process-timeout": 1800
},
"extra": {
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"scripts": {
"post-install-cmd": "php init --env=Development --overwrite=n"
}
}