-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
39 lines (39 loc) · 1.06 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
{
"name": "paragonie/password_lock",
"description": "Wraps Bcrypt-SHA2 in Authenticated Encryption",
"keywords": [
"password",
"hash",
"encryption",
"hashing"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Scott Arciszewski",
"email": "[email protected]",
"homepage": "https://paragonie.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/paragonie/password_lock/issues",
"email": "[email protected]",
"source": "https://github.com/paragonie/password_lock"
},
"autoload": {
"files": [
"src/PasswordLock.php"
]
},
"require": {
"php": "^7.3|^8",
"defuse/php-encryption": "^2",
"paragonie/constant_time_encoding": "^2|^3"
},
"require-dev": {
"phpunit/phpunit": "^6|^7|^8|^9",
"vimeo/psalm": "^1|^2|^3|^4"
}
}