-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
48 lines (48 loc) · 1.33 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
{
"name": "communityii/yii2-user",
"description": "Configurable Yii 2 user management module with social authentication and various controls.",
"keywords": [
"yii2",
"user",
"module",
"auth",
"social",
"password"
],
"homepage": "https://github.com/communityii/yii2-user",
"type": "yii2-extension",
"license": "BSD 3-Clause",
"authors": [
{
"name": "Kartik Visweswaran",
"email": "[email protected]",
"homepage": "http://www.krajee.com/"
}
],
"require": {
"yiisoft/yii2-authclient": "*",
"yiisoft/yii2-swiftmailer": "*",
"kartik-v/yii2-widget-alert": "*",
"kartik-v/yii2-widget-fileinput": "*",
"kartik-v/yii2-widget-select2": "*",
"kartik-v/yii2-password": "*",
"kartik-v/yii2-builder": "*",
"kartik-v/yii2-detail-view": "*",
"communityii/yii2-common": "*",
"derekisbusy/yii2-haikunator": "*"
},
"require-dev": {
"yiisoft/yii2-codeception": "~2.0",
"codeception/specify": "*",
"codeception/verify": "*",
"codeception/aspect-mock": "*"
},
"autoload": {
"psr-4": {
"comyii\\user\\": ""
}
},
"extra": {
"bootstrap": "comyii\\user\\ModuleInit"
}
}