-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
executable file
·32 lines (32 loc) · 951 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
{
"name": "vova07/yii2-users-module",
"description": "The users module for Yii framework.",
"type": "yii2-extension",
"keywords": ["yii2", "yii 2", "users", "user", "module", "modules", "account", "management", "profile", "profiles"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Crudu Vasile",
"email": "bazillio07@yandex.ru"
}
],
"support": {
"issues": "https://github.com/vova07/yii2-users-module/issues?state=open",
"source": "https://github.com/vova07/yii2-users-module"
},
"require": {
"yiisoft/yii2": "*",
"yiisoft/yii2-swiftmailer": "*",
"yiisoft/yii2-bootstrap": "*",
"vova07/yii2-rbac-module": "*",
"vova07/yii2-control-widget": "*"
},
"autoload": {
"psr-4": {
"vova07\\users\\": ""
}
},
"extra": {
"bootstrap": "vova07\\users\\Bootstrap"
}
}