forked from paragonie/halite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1011 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
46
{
"name": "paragonie/halite",
"description": "High-level cryptography interface powered by libsodium",
"keywords": [
"encryption",
"public-key",
"cryptography",
"signatures",
"password",
"hashing",
"libsodium",
"sodium",
"Curve25519",
"X25519",
"Ed25519",
"XSalsa20",
"BLAKE",
"BLAKE2",
"BLAKE2b",
"Argon2",
"Argon2i",
"ext-sodium"
],
"type": "library",
"require": {
"php": "^7.2",
"paragonie/constant_time_encoding": "^2",
"paragonie/sodium_compat": "^1.5"
},
"autoload": {
"psr-4": {
"ParagonIE\\Halite\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "^6",
"vimeo/psalm": "^0|^1"
},
"license": "MPL-2.0",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "[email protected]"
}
]
}