-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
41 lines (41 loc) · 1.03 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
{
"name": "sop/x509",
"description": "A PHP library for X.509 public key certificates, attribute certificates, certification requests and certification path validation.",
"homepage": "https://github.com/sop/x509",
"license": "MIT",
"type": "library",
"keywords": [
"x509",
"x.509",
"certificate",
"attribute certificate",
"ac",
"certification request",
"csr"
],
"authors": [
{
"name": "Joni Kollani",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-gmp": "*",
"sop/asn1": "^4.0.0",
"sop/x501": "^0.6.1",
"sop/crypto-types": "^0.3.0",
"sop/crypto-bridge": "^0.3.1",
"sop/crypto-encoding": "^0.3.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^3.49"
},
"autoload": {
"psr-4": {
"Sop\\X509\\": "lib/X509/"
}
}
}