forked from jaggedsoft/php-binance-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·31 lines (31 loc) · 902 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
{
"name": "MxFlorin/php-binance-api",
"description": "PHP Binance API is an asynchronous PHP library for the Binance API designed to be easy to use.",
"keywords": ["Binance","Binance Futures","Cryptocurrency","WebSocket"],
"license": "MIT",
"repositories": [ {
"type": "vcs",
"url": "https://github.com/MxFlorin/php-binance-api"
}],
"require": {
"php": ">=7.0",
"ext-curl": "*",
"ratchet/pawl": "^0.3.0",
"react/socket": "^1.0 || ^0.8 || ^0.7",
"ratchet/rfc6455": "^0.3"
},
"require-dev": {
"phpunit/phpunit": "~6",
"codacy/coverage": "dev-master"
},
"config": {
"optimize-autoloader": true,
"minimum-stability": "stable"
},
"autoload": {
"classmap": [
"php-binance-api.php",
"php-binance-api-rate-limiter.php"
]
}
}