-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
34 lines (34 loc) · 982 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
{
"name": "codenix-sv/bittrex-api",
"type": "library",
"description": "PHP client for Bittrex API",
"homepage": "https://github.com/codenix-sv/bittrex-api",
"keywords": ["client", "api", "php", "bittrex", "rest", "bittrex-api", "exchange"],
"license": "MIT",
"support": {
"issues": "https://github.com/codenix-sv/bittrex-api/issues?state=open",
"source": "https://github.com/codenix-sv/bittrex-api"
},
"authors": [
{
"name": "Volodymyr Svyryd",
"email": "codenix.sv@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": { "Codenixsv\\BittrexApi\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Codenixsv\\BittrexApi\\Tests\\": "tests/"}
},
"prefer-stable": true
}