forked from zhouaini528/exchanges-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.09 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
{
"name": "linwj/exchanges",
"type": "library",
"description": "This is a virtual currency SDK that brings together multiple exchanges",
"license": "MIT",
"keywords": ["exchange","bitmex", "binance", "okex", "huobi","kucoin","kumex","coinbase","mxc","zb","bitfinex","bittrex","kraken","gate","bigone","crex24","bybit","coinbene","bitget","poloniex","coinex","ftx"],
"authors": [
{
"name": "linwenjun",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lin\\Exchange\\": "./src/"
}
},
"require": {
"php": ">=7.0",
"linwj/bitmex":"*",
"linwj/okex":"*",
"linwj/huobi":"*",
"linwj/binance":"*",
"linwj/kucoin":"*",
"linwj/coinbase":"*",
"linwj/mxc":"*",
"linwj/zb":"*",
"linwj/bitfinex":"*",
"linwj/bittrex":"*",
"linwj/kraken":"*",
"linwj/gate":"*",
"linwj/bigone":"*",
"linwj/bybit":"*",
"linwj/bitget":"*",
"linwj/poloniex":"*",
"linwj/coinex":"*"
}
}