forked from mdmsoft/yii2-admin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.32 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
{
"name": "mdmsoft/yii2-admin",
"description": "RBAC Auth manager for Yii2 ",
"keywords": ["yii", "admin", "auth", "rbac"],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/mdmsoft/yii2-admin/issues",
"source": "https://github.com/mdmsoft/yii2-admin"
},
"authors": [
{
"name": "Misbahul Munir",
"email": "[email protected]"
}
],
"repositories":[
{
"type": "package",
"package": {
"name": "yiisoft/yii2",
"version": "dev-master",
"source": {
"url": "https://github.com/GrowlMediaLtd/yii2.git",
"type": "git",
"reference": "master"
},
"autoload": {
"classmap": [""]
}
}
}
],
"require": {
"yiisoft/yii2": "dev-master"
},
"suggest": {
"yiisoft/yii2-bootstrap": "Used when using layout 'left-menu', 'right-menu' or 'top-menu'"
},
"autoload": {
"psr-4": {
"mdm\\admin\\": ""
}
},
"extra": {
"branch-alias": {
"dev-1.0.master": "1.0.x-dev",
"dev-master": "2.0.x-dev"
}
}
}