forked from adapik/CMS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (34 loc) · 815 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": "adapik/cms",
"description": "A PHP Library that allows you to decode ASN.1 CMS using Basic Encoding Rules (BER).",
"type": "library",
"homepage": "https://github.com/Adapik/CMS",
"license": "MIT",
"authors": [
{
"name": "Alexander Danilov",
"email": "adapik@yandex.ru",
"homepage": "https://github.com/Adapik",
"role": "Author"
}
],
"keywords": [ "cms", "pkcs7", "cades", "x690", "asn1", "asn.1", "ber", "der", "binary", "encoding", "decoding" ],
"require": {
"php": ">=7.2",
"adapik/phpasn1": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"psr-4": {
"Adapik\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Adapik\\Test\\": "tests/"
}
}
}