-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.04 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
{
"name": "wdmg/yii2-rbac",
"description": "RBAC management module",
"keywords": ["yii2", "yii2-rbac", "rbac", "rbac manager", "wdmg"],
"type": "yii2-extension",
"license": "MIT",
"version": "1.2.0",
"homepage": "https://github.com/wdmg/yii2-rbac",
"support": {
"source": "https://github.com/wdmg/yii2-rbac",
"issues": "https://github.com/wdmg/yii2-rbac/issues"
},
"authors": [
{
"name": "Alexsander Vyshnyvetskyy",
"email": "alex.vyshnyvetskyy@gmail.com"
},
{
"name": "W.D.M.Group, Ukraine",
"email": "wdmg.com.ua@gmail.com"
}
],
"require": {
"yiisoft/yii2": "^2.0.33",
"wdmg/yii2-base": "^1.2.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"wdmg\\rbac\\": ""
}
},
"extra": {
"options": {
"routePrefix": "admin",
"assignmentTable": "{{%rbac_assignments}}",
"itemChildTable": "{{%rbac_childs}}",
"itemTable": "{{%rbac_roles}}",
"ruleTable": "{{%rbac_rules}}",
"errorAction": "rbac/rbac/error"
}
}
}