-
Notifications
You must be signed in to change notification settings - Fork 108
/
composer.json
48 lines (48 loc) · 1.05 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
{
"name": "paragonie/paseto",
"description": "Platform-Agnostic Security Tokens",
"license": "ISC",
"type": "library",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ParagonIE\\Paseto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\Paseto\\Tests\\": "tests/"
}
},
"require": {
"ext-gmp": "*",
"ext-json": "*",
"ext-openssl": "*",
"php": "^8.1",
"paragonie/constant_time_encoding": "^2.7|^3",
"paragonie/corner": "^2",
"paragonie/easy-ecc": "^1.1",
"paragonie/sodium_compat": "^1|^2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"vimeo/psalm": "^4|^5"
},
"scripts": {
"full-test": [
"@static-analysis",
"@test"
],
"static-analysis": "psalm",
"test": "phpunit"
},
"suggest": {
"ext-sodium": "Better performance for PASETO v4, secure memory zeroing",
"paragonie/paserk": "Key serialization, key wrapping, canonical key identification"
}
}