-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (54 loc) · 1.12 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
45
46
47
48
49
50
51
52
53
54
{
"name": "falseclock/advanced-cms",
"description": "A PHP Library that allows you to decode and manipulate CAdES or in other words CMS Advanced Electronic Signatures described in ETSI standart TS 101 733.",
"type": "library",
"homepage": "https://github.com/Falseclock/AdvancedCMS",
"license": "MIT",
"authors": [
{
"name": "Nurlan Mukhanov",
"email": "nurike@gmail.com",
"homepage": "https://github.com/Falseclock/",
"role": "Author"
}
],
"keywords": [
"cms",
"pkcs7",
"cades",
"x690",
"asn1",
"asn.1",
"ber",
"der",
"binary",
"encoding",
"decoding",
"gost",
"kalkan",
"эцп",
"signature",
"openssl"
],
"require": {
"php": ">=7.4",
"adapik/phpasn1": "^2.3",
"adapik/cms": "^0.2.1",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"php-coveralls/php-coveralls": "^2.5.1",
"ext-curl": "*"
},
"autoload": {
"psr-4": {
"Falseclock\\AdvancedCMS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Falseclock\\AdvancedCMS\\Test\\": "tests/"
}
}
}