forked from bencagri/php-binance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (35 loc) · 969 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": "larislackers/php-binance",
"version": "1.0.2",
"description": "A PHP wrapper for the Binance API endpoints.",
"keywords": ["binance", "cryptocurrency", "php", "api", "wrapper-api", "php-library", "cryptocurrency-exchanges"],
"homepage": "https://github.com/larislackers/php-binance",
"license": "MIT",
"authors": [
{
"name": "Panagiotis Papadatis",
"email": "ppapadatis@protonmail.com"
},
{
"name": "Dimitrios Giouroukis",
"email": "digitalbckp@gmail.com"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "^6.3",
"ratchet/pawl": "^0.3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Larislackers\\BinanceApi\\": "src/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
}