-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
40 lines (35 loc) · 999 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
{
"minimum-stability": "dev",
"name" : "erlangb/betfair",
"type" : "library",
"description": "Betfair API PHP 5.4+ library",
"keywords" : ["Betfair", "API", "betting api", "betting", "bet"],
"homepage" : "http://www.danieledangeli.com",
"license" : "MIT",
"authors": [
{
"name" : "Daniele D'Angeli",
"email" : "[email protected]",
"homepage": "http://www.danieledangeli.com",
"role" : "Engineer"
}
],
"require-dev": {
"phpspec/phpspec": "2.1.1",
"fabpot/php-cs-fixer": "@stable"
},
"config": {
"bin-dir": "bin"
},
"require": {
"php": ">=5.4.0",
"guzzlehttp/guzzle": "~5.0",
"guzzlehttp/command": "0.7.*",
"guzzlehttp/guzzle-services": "0.5.*",
"symfony/yaml": "~2.6",
"symfony/finder": "~2.6"
},
"autoload": {
"psr-0": { "Betfair": "src/" }
}
}