-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
46 lines (46 loc) · 1.08 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
45
46
{
"authors": [
{
"email": "schst@php.net",
"name": "Stephan Schmidt",
"role": "Lead"
},
{
"email": "amt@php.net",
"name": "Adam Maccabee Trachtenberg",
"role": "Lead"
},
{
"email": "luckec@php.net",
"name": "Carsten Lucke",
"role": "Lead"
},
{
"email": "amir@php.net",
"name": "Amir Mohammad Saied",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"Services_Ebay": "./"
}
},
"description": "Interface to eBay's XML-API.",
"include-path": [
"./"
],
"license": "PHP License",
"name": "pear/services_ebay",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Services_Ebay",
"source": "https://github.com/pear/Services_Ebay"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}