-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 915 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": "liamdennehy/eidas-certificate",
"description": "eIDAS Trust Services and Qualified Certificate Statement (QCStatement) library",
"type": "library",
"require": {
"phpseclib/phpseclib": ">=2.0.31 <3.0",
"php": ">=7.1",
"sop/asn1": "^3.4",
"robrichards/xmlseclibs": "^3.1",
"guzzlehttp/guzzle": "^6.3",
"liamdennehy/phpseclib": "^3.0"
},
"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",
"phpunit/phpunit": "^7"
},
"config": {
"platform": {
"php": "7.1.1"
}
}
}