This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.58 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
{
"name": "typisttech/wp-password-argon-two",
"description": "Securely store WordPress user passwords in database with Argon2i hashing and SHA-512 HMAC using PHP's native functions.",
"keywords": [
"wordpress",
"wp",
"password",
"argon2",
"argon2i",
"sha512",
"hashing",
"hmac"
],
"homepage": "https://github.com/TypistTech/wp-password-argon-two",
"license": "MIT",
"authors": [
{
"name": "Typist Tech",
"email": "[email protected]",
"homepage": "https://typist.tech/"
},
{
"name": "Tang Rufus",
"email": "[email protected]",
"homepage": "https://typist.tech/",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/TypistTech/wp-password-argon-two/issues",
"source": "https://github.com/TypistTech/wp-password-argon-two"
},
"minimum-stability": "stable",
"require": {
"php": "^7.2 || ^8.0"
},
"suggest": {
"typisttech/wp-password-argon-two-env": "Allows you configure WP Password Argon Two with environment variables"
},
"conflict": {
"roots/wp-password-bcrypt": "*"
},
"autoload": {
"psr-4": {
"TypistTech\\WPPasswordArgonTwo\\": "src/"
},
"files": [
"src/pluggable.php"
]
},
"scripts": {
"test": "codecept run wpunit"
},
"abandoned": "roots/wp-password-bcrypt"
}