-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 913 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
36
37
38
39
{
"name": "sop/crypto-types",
"description": "A PHP library of various ASN.1 types for cryptographic applications.",
"homepage": "/~https://github.com/sop/crypto-types",
"license": "MIT",
"type": "library",
"keywords": [
"cryptography",
"asn1",
"algorithm identifier",
"rsa",
"ec",
"public key",
"private key",
"signature"
],
"authors": [
{
"name": "Joni Eskelinen",
"email": "jonieske@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-gmp": "*",
"sop/asn1": "^4.0.0",
"sop/crypto-encoding": "^0.3.0",
"sop/x501": "0.6.1"
},
"require-dev": {
"phpunit/phpunit": "^8.1"
},
"autoload": {
"psr-4": {
"Sop\\CryptoTypes\\": "lib/CryptoTypes/"
}
}
}