-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 1.5 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
44
{
"name": "ionux/php-asn1-library",
"description": "This project aims to provide a complete PHP library for the encoding and decoding of ASN.1 DER encoded data. The OID class provides for the identification of ASN.1 object identifiers.",
"keywords": ["asn.1","abstract","syntax","notation","der","ber","cer","cryptography","crypto","encryption","utility","algorithm","pem","oid","object","identifier","encoded","verify","generate","key","keys","math","library","encode","decode","identification","number","x.208","xer","per","protocol","hex","gmp","ionux","php","mit","open","source","free"],
"homepage": "https://github.com/ionux/php-asn1-library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Rich Morgan",
"email": "[email protected]",
"role": "Creator and Lead Developer"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/ionux/php-asn1-library.git"
}
],
"support": {
"issues": "https://github.com/ionux/php-asn1-library/issues",
"email": "[email protected]",
"source": "https://github.com/ionux/php-asn1-library"
},
"autoload": {
"psr-4": {
"ASN1\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ASN1\\": "src/"
}
},
"require": {
"php": ">=5.6.0",
"ext-gmp": "*",
"ionux/phactor": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
}
}