forked from vdbelt/ftx-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.13 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": "vdbelt/ftx-php",
"description": "A PHP client for FTX.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Martin van de Belt",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"psr/http-message": "^1.0",
"php-http/httplug": "^2.0",
"php-http/discovery": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"php-http/guzzle6-adapter": "^2.0",
"php-http/mock-client": "^1.3",
"nyholm/psr7": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"FTX\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FTX\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html build/",
"test-coverage-clover": "vendor/bin/phpunit --coverage-clover=coverage.xml"
}
}