-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
34 lines (34 loc) · 892 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
34
{
"name": "robregonm/yii2-auth",
"description": "Yii 2 User Authentication & Role Based Access Control (RBAC) Module",
"keywords": ["yii", "yii2", "user", "auth", "authentication", "rbac", "access"],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/robregonm/yii2-auth/issues?state=open",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"source": "https://github.com/robregonm/yii2-auth"
},
"authors": [
{
"name": "robregonm",
"email": "[email protected]",
"homepage": "http://obregon.co",
"role": "Author"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-composer": "*",
"yiisoft/yii2-swiftmailer": "*",
"himiklab/yii2-recaptcha-widget": "*"
},
"autoload": {
"psr-4": {
"auth\\": ""
}
}
}