-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 998 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
{
"name": "arnezt/binancephpsdk",
"description": "This repository contains the PHP-SDK to interact with Binance DEX. It's supported by mostly pure PHP code.",
"keywords": [
"Binance Chain PHP SDK"
],
"homepage": "http://arnezt.github.io/binancephpsdk",
"license": "MIT",
"type": "library",
"authors": [{
"name": "Hammad Tariq",
"email": "[email protected]"
}],
"autoload": {
"psr-0": {
"": "gen",
"Binance": "src",
"Binance\\RPC": "src/RPC"
},
"psr-4": {
"": "gen",
"Binance\\": "src",
"Binance\\RPC\\": "src/RPC"
}
},
"require": {
"guzzlehttp/guzzle": "~6.0",
"graze/guzzle-jsonrpc": "^3.2",
"bitwasp/buffertools": "^0.5.7",
"google/protobuf": "^3.11",
"brick/math": "^0.8.14",
"bitwasp/bitcoin": "^1.0",
"ramsey/uuid": "^4.0",
"php": ">=7.0"
}
}