forked from liamdennehy/eidas-certificate-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 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
42
43
44
{
"name": "liamdennehy/eidas-certificate",
"description": "eIDAS Trust Services and Qualified Certificate Statement (QCStatement) library",
"type": "library",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/liamdennehy/xmlseclibs.git"
}
],
"require": {
"phpseclib/phpseclib": "^2.0",
"robrichards/xmlseclibs": "dev-mgf1#c2e5a1424804c462ec5342bb68858725cbe78256@dev",
"php": ">=7.1",
"sop/asn1": "^3.4"
},
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Liam Dennehy",
"email": "[email protected]"
}
],
"autoload": {
"classmap": [
"src/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"guzzlehttp/guzzle": "^6.3",
"phpunit/phpunit": "^7"
},
"config": {
"platform": {
"php": "7.1.1"
}
}
}