-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
43 lines (43 loc) · 1.08 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
{
"name": "paragonie/certainty",
"description": "Up-to-date, verifiable repository for Certificate Authorities",
"keywords": ["CA", "Certificate Authority", "CA-Cert", "CACert", "cacert.pem", "ca-cert.pem", "PKI", "TLS", "SSL", "Public-Key Infractructure", "Ed25519"],
"license": "ISC",
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "security@paragonie.com",
"homepage": "https://paragonie.com"
}
],
"autoload": {
"psr-4": {
"ParagonIE\\Certainty\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ParagonIE\\Certainty\\Tests\\": "test/"
}
},
"bin": [
"bin/certainty-cert-symlink"
],
"require": {
"php": "^5.5|^7|^8",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^6|^7",
"paragonie/constant_time_encoding": "^1|^2|^3",
"paragonie/sodium_compat": "^1|^2"
},
"require-dev": {
"composer/composer": "^1|^2",
"phpunit/phpunit": "^4|^5|^6|^7|^8|^9"
},
"scripts": {
"post-autoload-dump": [
"ParagonIE\\Certainty\\Composer::postAutoloadDump"
]
}
}