-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (39 loc) · 981 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
40
41
42
43
44
45
46
47
{
"name": "d4m/ngnfeed-ebay",
"type": "library",
"description": "An object oriented implementation of Ebay Trading API",
"keywords": ["ebay", "feed"],
"license": "MIT",
"homepage": "http://www.dev4media.pe",
"authors": [
{
"name": "Dev4Media",
"homepage": "http://www.dev4media.pe"
},
{
"name": "Raul Rodriguez",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"guzzle/guzzle": "~3.7",
"symfony/serializer": ">=2.3"
},
"require-dev": {
"phpspec/phpspec": "2.0.*@dev"
},
"autoload": {
"psr-0": { "D4m\\NgnFeed\\Ebay": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"bin-dir": "bin"
},
"bin": ["bin/phpspec"],
"minimum-stability": "dev"
}