-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 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
{
"name": "codenix-sv/kuna-api",
"type": "library",
"description": "PHP REST API v2 client for Kuna exchange",
"homepage": "https://github.com/codenix-sv/kuna-api",
"keywords": ["client", "api", "php", "kuna.io", "rest", "exchange"],
"license": "MIT",
"support": {
"issues": "https://github.com/codenix-sv/kuna-api/issues?state=open",
"source": "https://github.com/codenix-sv/kuna-api"
},
"authors": [
{
"name": "Volodymyr Svyryd",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"codenix-sv/api-client": "^1.0",
"nyholm/psr7": "^1.2",
"php-http/guzzle6-adapter": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"php-http/mock-client": "^1.3"
},
"autoload": {
"psr-4": { "Codenixsv\\KunaApi\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Codenixsv\\KunaApi\\Tests\\": "tests/"}
}
}