forked from paragonie/halite
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.37 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.37 KB
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
{
"name": "paragonie/halite",
"type": "library",
"keywords": [
"encryption",
"public-key",
"cryptography",
"signatures",
"password",
"hashing",
"libsodium",
"sodium",
"Curve25519",
"X25519",
"Ed25519",
"XSalsa20",
"BLAKE",
"BLAKE2",
"BLAKE2b",
"Argon2",
"Argon2i",
"ext-sodium"
],
"description": "High-level cryptography interface powered by libsodium",
"homepage": "https://github.com/paragonie/halite",
"license": "MPL-2.0",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"homepage": "https://paragonie.com",
"email": "info@paragonie.com"
}
],
"require": {
"php": "^7.2",
"paragonie/constant_time_encoding": "^2",
"paragonie/hidden-string": "^1",
"paragonie/sodium_compat": "^1.6"
},
"autoload": {
"psr-4": {
"ParagonIE\\Halite\\": "./src"
}
},
"require-dev": {
"phpunit/phpunit": "^7",
"vimeo/psalm": "^1|^2"
},
"support": {
"docs": "https://github.com/paragonie/halite/tree/master/doc"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true
}