-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.05 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
{
"name": "cfxmarkets/php-exchange-sdk",
"description": "A public PHP SDK for accessing the CFX Markets exchange",
"type": "library",
"keywords": [ "cfx", "cfxmarkets", "cfx", "api", "client", "exchange", "sdk" ],
"license": "MIT",
"authors": [
{
"name": "CFX and contributors",
"homepage": "https://github.com/cfxmarkets/php-exchange-sdk/graphs/contributors"
}
],
"minimum-stability": "stable",
"require" : {
"php" : ">=7.0.0",
"psr/http-message": "~1.0",
"cfxmarkets/php-persistence": "^0.3.0 || ^0.4.0 || ^0.5.0 || ^0.6.0",
"cfxmarkets/php-public-models": "^1.21.0"
},
"require-dev" : {
"phpunit/phpunit" : ">=4.8.0",
"guzzlehttp/guzzle" : "^6.0.0",
"kael-shipman/php-std-traits": "^7.0.0"
},
"autoload" : {
"psr-4" : {
"CFX\\SDK\\Exchange\\" : "src/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/kael-shipman/psr7.git"
}
]
}