-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
37 lines (37 loc) · 947 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
{
"name": "5dvision/siga-php-client",
"description": "SiGa php client",
"homepage": "https://5dvision.ee",
"keywords": ["digidoc", "hashcode-signing", "digital-signing", "digisign","signing", "signature-gateway", "siga"],
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/5dvision/siga-php-client/issues",
"source": "https://github.com/5dvision/siga-php-client"
},
"authors": [
{
"name": "5D Vision",
"email": "[email protected]",
"homepage": "http://5dvision.ee"
},
{
"name": "Kullar Kert",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2.5 || ^8.0",
"ext-ctype": "*",
"ext-zip": "*",
"ext-dom": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.1"
},
"autoload": {
"psr-4": {
"SigaClient\\": "src/"
}
}
}