-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 877 Bytes
/
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
{
"name": "hrobertson/x509-verify",
"description": "Check if one X.509 certificate is the signer of another",
"keywords": [ "ssl", "certificate", "x509", "certificate-chain" ],
"homepage": "https://github.com/hrobertson/php-x509-verify",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Hamish Robertson",
"homepage": "https://github.com/hrobertson",
"role": "Developer"
}
],
"support": {
"source": "https://github.com/hrobertson/php-x509-verify",
"issues": "https://github.com/hrobertson/php-x509-verify/issues"
},
"require": {
"php": "^5.6 || ^7.0",
"ext-openssl": "*"
},
"autoload": {
"psr-4": {
"HRobertson\\X509Verify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HRobertson\\X509Verify\\Test\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^5 || ^7"
}
}