-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 920 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "altis/security",
"description": "Security module for Altis",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Human Made",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"inc/namespace.php",
"inc/passwords/namespace.php",
"inc/php_basic_auth/namespace.php"
],
"classmap": [
"inc/",
"inc/stream/"
]
},
"require": {
"php": ">=7.1",
"bjeavons/zxcvbn-php": "^1.3.1",
"altis/browser-security": "^2.1.0",
"humanmade/disable-accounts": "^0.2.2",
"humanmade/php-basic-auth": "^1.1.7",
"humanmade/require-login": "~1.0.5",
"humanmade/two-factor": "^0.3.3",
"xwp/stream": "^4.0.2"
},
"extra": {
"altis": {
"install-overrides": [
"altis/browser-security",
"humanmade/disable-accounts",
"humanmade/php-basic-auth",
"humanmade/require-login",
"humanmade/two-factor",
"xwp/stream"
]
}
}
}