forked from johnitvn/yii2-rbac-plus
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 963 Bytes
/
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
{
"name": "templesuite/yii2-rbac-plus",
"description":"Database role base access control manager for yii2",
"type": "yii2-extension",
"license": "Apache-2.0",
"authors": [
{
"name": "John Martin",
"email": "[email protected]",
"homepage": "https://github.com/johnitvn?tab=repositories"
}
],
"support": {
"issues": "https://github.com/jeffwalsh/yii2-rbac-plus/issues?state=open",
"source": "https://github.com/jeffwalsh/yii2-rbac-plus"
},
"suggest": {
"johnitvn/yii2-user-plus": "High flexible user management extension for yii2"
},
"minimum-stability": "dev",
"require": {
"yiisoft/yii2": ">=2.0.4",
"templesuite/yii2-ajaxcrud": "3.0.0"
},
"autoload": {
"psr-4": {
"johnitvn\\rbacplus\\": "src/"
}
},
"extra": {
"bootstrap": "johnitvn\\rbacplus\\Bootstrap"
}
}