forked from zhouaini528/exchanges-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.17 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.17 KB
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
{
"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": "465382251@qq.com"
}
],
"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/crex24":"*",
"linwj/bybit":"*",
"linwj/coinbene":"*",
"linwj/bitget":"*",
"linwj/poloniex":"*",
"linwj/coinex":"*",
"linwj/ftx":"*"
}
}