-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (31 loc) · 770 Bytes
/
composer.json
File metadata and controls
33 lines (31 loc) · 770 Bytes
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
{
"name": "isign/isign-sdk-php",
"description": "Client for iSign digital signature API",
"type": "library",
"license": "MIT",
"homepage": "https://www.isign.io",
"require": {
"php" : ">=5.4.0",
"guzzlehttp/guzzle" : "~5.1",
"guzzlehttp/log-subscriber" : "~1.0",
"symfony/validator" : "~2.6"
},
"require-dev": {
"psr/log" : "~1.0",
"monolog/monolog" : "~1.0",
"phpunit/phpunit" : "~4.4"
},
"autoload": {
"psr-4": {
"Isign\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Isign\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
}
}