-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
44 lines (43 loc) · 1.26 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
39
40
41
42
43
44
{
"name": "binance/binance-connector-php",
"description": "A thin layer for Binance API in PHP",
"homepage": "https://github.com/binance/binance-connector-php",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Binance",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"psr/log": "^1|^2|^3",
"guzzlehttp/guzzle": "^7.7",
"ratchet/pawl": "^0.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"2pd/guzzle-http-mock": "^4.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phan/phan": "^5.4"
},
"autoload": {
"psr-4": {
"Binance\\": "src/Binance/"
}
},
"autoload-dev": {
"psr-4": {
"Binance\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=build/artifacts/coverage",
"lint-check": "php-cs-fixer fix --using-cache=no --stop-on-violation --config=.php-cs-fixer.php -v .",
"lint-fix": "php-cs-fixer fix --using-cache=no --config=.php-cs-fixer.php -v .",
"analyze": "phan --allow-polyfill-parser"
}
}