-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.21 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
{
"name": "cfxmarkets/php-brokerage-sdk",
"description": "A public PHP api library to access the CFX Markets brokerage api",
"type": "library",
"keywords": [ "cfx", "api", "client", "brokerage" ],
"license": "MIT",
"authors": [
{
"name": "CFX and contributors",
"homepage": "https://github.com/cfxmarkets/php-broker-lib/graphs/contributors"
}
],
"minimum-stability": "stable",
"require" : {
"php" : ">=5.4.0",
"psr/http-message": "~1.0",
"cfxmarkets/php-persistence": "^0.3.0",
"cfxmarkets/php-public-models": "^1.4.0"
},
"require-dev" : {
"phpunit/phpunit" : ">=4.8.0",
"guzzlehttp/guzzle" : "^6.0.0"
},
"autoload" : {
"psr-4" : {
"CFX\\SDK\\Brokerage\\" : "src/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/cfxmarkets/php-persistence.git"
},
{
"type": "git",
"url": "https://github.com/cfxmarkets/php-public-models.git"
},
{
"type": "git",
"url": "https://github.com/cfxmarkets/php-jsonapi-objects.git"
}
]
}