forked from dektrium/yii2-user
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
49 lines (49 loc) · 1.39 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
49
{
"name": "dabilite/yii2-user",
"description": "Flexible user registration and authentication module for Yii2",
"keywords": ["yii2", "yii2-user", "user management", "dektrium", "dabilite"],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/dabilite/yii2-user/issues?state=open",
"source": "https://github.com/dabilite/yii2-user"
},
"authors": [
{
"name": "Dmitry Erofeev",
"email": "[email protected]",
"homepage": "http://dmeroff.ru"
},
{
"name": "Sam Mousa",
"email": "[email protected]",
"homepage": "https://www.linkedin.com/in/sam-mousa-16333820/"
}
],
"require": {
"yiisoft/yii2": "^2.0.0",
"yiisoft/yii2-swiftmailer": "^2.0.0",
"yiisoft/yii2-authclient": "^2.1.0",
"yiisoft/yii2-bootstrap": "^2.0.0",
"codeception/codeception": "^2.3"
},
"require-dev": {
"codeception/specify": "^0.4.3",
"codeception/verify": "^0.3.1"
},
"provide": {
"dektrium/yii2-user": "0.9.12"
},
"autoload": {
"psr-4": {
"dektrium\\user\\": ""
}
},
"extra": {
"bootstrap": "dektrium\\user\\Bootstrap",
"branch-alias": {
"dev-master": "0.9.x-dev",
"dev-develop": "1.0.x-dev"
}
}
}