forked from 2amigos/yii2-usuario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 3.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "2amigos/yii2-usuario",
"description": "Highly customizable and extensible user management, authentication, and authorization Yii2 extension",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/2amigos/yii2-usuario/issues?state=open",
"forum": "https://gitter.im/2amigos/yii2-usuario",
"source": "https://github.com/2amigos/yii2-usuario"
},
"keywords": [
"2amigos",
"yii",
"yii2",
"yii 2",
"yii framework",
"user",
"access",
"rbac",
"acl",
"backend",
"yii2-user",
"yii2 user",
"user management"
],
"authors": [
{
"name": "2amigOS! Consulting Group",
"email": "[email protected]",
"homepage": "http://2amigos.us",
"role": "Developer"
},
{
"name": "Antonio Ramirez Cobos",
"email": "[email protected]",
"homepage": "http://2amigos.us",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.5",
"2amigos/yii2-selectize-widget": "^1.1",
"yiisoft/yii2-authclient": "^2.1",
"yiisoft/yii2-httpclient": "^2.0",
"yiisoft/yii2-bootstrap": "^2.0",
"yetopen/yii2-sms-sender-interface": "^0.1.1"
},
"suggest": {
"yiisoft/yii2-symfonymailer": "A mailer driver is needed to send e-mails. Older versions use abandoned Swiftmailer which can be replaced with symfonymailer",
"2amigos/2fa-library": "Needed if you want to enable 2 Factor Authentication. Require version ^2 or ^3",
"2amigos/qrcode-library": "Needed if you want to enable 2FA with QR Code generation. Require version ^2 or ^3"
},
"require-dev": {
"php": ">=7.4",
"2amigos/2fa-library": "^2.0|^3.0",
"2amigos/qrcode-library": "^2.0|^3.0",
"friendsofphp/php-cs-fixer": "^3",
"yiisoft/yii2-symfonymailer": "^2|^3",
"squizlabs/php_codesniffer": "*",
"phpmd/phpmd": "@stable",
"codeception/codeception": "^4|^5",
"roave/security-advisories": "dev-master",
"codeception/module-filesystem": "^2|^3",
"codeception/module-yii2": "^1.1",
"codeception/module-asserts": "^2|^3",
"codeception/module-db": "^2|^3",
"phpstan/phpstan": "^1.8"
},
"autoload": {
"psr-4": {
"Da\\User\\": "./src/User"
}
},
"autoload-dev": {
"psr-4": {
"Da\\User\\": "./src/User"
}
},
"config": {
"platform": {
"php": "7.4"
},
"preferred-install": {
"*": "auto"
},
"fxp-asset": {
"enabled": false
},
"allow-plugins": {
"yiisoft/yii2-composer": true
}
},
"conflict": {
"dektrium/yii2-rbac": "*",
"dektrium/yii2-user": "*"
},
"extra": {
"bootstrap": "Da\\User\\Bootstrap"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}