-
Notifications
You must be signed in to change notification settings - Fork 85
/
composer.json
62 lines (62 loc) · 1.46 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
57
58
59
60
61
62
{
"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": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"paragonie/constant_time_encoding": "^2|^3",
"paragonie/hidden-string": "^1|^2",
"paragonie/sodium_compat": "^1|^2"
},
"autoload": {
"psr-4": {
"ParagonIE\\Halite\\": "./src"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"vimeo/psalm": "^4"
},
"scripts": {
"test": "phpunit && psalm"
},
"support": {
"docs": "https://github.com/paragonie/halite/tree/master/doc"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true
}