forked from gitter-badger/yousign-api-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 971 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": "yousign/yousign-api-client",
"description": "A PHP client for the Yousign API",
"type": "library",
"authors": [
{
"name": "Kevin Auvinet",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "nusphere/nusoap",
"version": "0.9.5",
"dist": {
"url": "http://downloads.sourceforge.net/project/nusoap/nusoap/0.9.5/nusoap-0.9.5.zip",
"type": "zip"
},
"autoload": {
"classmap": ["lib/"]
}
}
}
],
"require": {
"php": ">=5.3",
"nusphere/nusoap": "0.9.5"
},
"autoload" : {
"psr-4": {"YousignAPI\\": "src/"}
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}