-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.27 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "lyquidity/requester",
"description": "Library to query HTTPS Certificates revocation status using the Online Certificate Status Protocol (OCSP) and to make a request to a Timestamp authority (TSA)",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Bill Seddon",
"email": "bill.seddon@lyquidity.com",
"homepage" : "https://www.xbrlquery.com",
"role" : "Author"
}
],
"homepage": "https://github.com/bseddon/requester/",
"support": {
"issues": "https://github.com/bseddon/requester/issues/",
"source": "https://github.com/bseddon/requester/"
},
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"autoload": {
"files": ["./src/autoload.php"]
},
"require": {
"php": ">=7.4.0",
"ext-gmp": "*",
"ext-curl": "*",
"ext-openssl": "*"
},
"keywords": [
"ocsp",
"request",
"rfc6069",
"certificate",
"https",
"revoke",
"revocation",
"revoked",
"online certificate status protocol",
"check",
"security",
"timestamp",
"timestamp authority",
"tsa",
"rfc3161"
]
}