forked from dektrium/yii2-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.21 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
{
"name": "lucadima15/yii2-user",
"description": "Flexible user registration and authentication module for Yii2 (original by Dektrium)",
"keywords": ["yii2", "yii2-user", "user management", "lucadima15"],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/lucadima15/yii2-user/issues?state=open",
"source": "https://github.com/lucadima15/yii2-user"
},
"authors": [
{
"name": "Luca Di Mauro",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.0",
"yiisoft/yii2": "^2.0.13",
"yiisoft/yii2-swiftmailer": "^2.0.0",
"yiisoft/yii2-authclient": "^2.1.0",
"yiisoft/yii2-bootstrap5": "^2.0.0"
},
"require-dev": {
"yiisoft/yii2-codeception": "^2.0.0",
"codeception/specify": "^0.4.3",
"codeception/verify": "^0.3.1"
},
"autoload": {
"psr-4": {
"lucadima15\\user\\": ""
}
},
"extra": {
"bootstrap": "lucadima15\\user\\Bootstrap",
"branch-alias": {
"dev-master": "0.9.x-dev",
"dev-develop": "1.0.x-dev"
}
}
}