-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
60 lines (60 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mocking-magician/coinbase-pro-sdk",
"type": "library",
"description": "Library for coinbase pro API calls",
"keywords": [
"coinbase",
"coinbase pro",
"sdk",
"crypto",
"exchange",
"bitcoin",
"etherum",
"blockchain"
],
"homepage": "https://github.com/MockingMagician/coinbase-pro-sdk",
"license": "MIT",
"authors": [
{
"name": "Marc MOREAU",
"email": "[email protected]"
},
{
"name": "Roger Thomas",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"MockingMagician\\CoinbaseProSdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MockingMagician\\CoinbaseProSdk\\Tests\\CommonHelpers\\": "tests/common_helpers",
"MockingMagician\\CoinbaseProSdk\\Tests\\Func\\": "tests/func",
"MockingMagician\\CoinbaseProSdk\\Tests\\Unit\\": "tests/unit",
"MockingMagician\\CoinbaseProSdk\\Tests\\Exp\\": "tests/experimental"
}
},
"config": {
"sort-packages": true
},
"require": {
"amphp/websocket-client": "^1.0",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^6.0 | ^7.0",
"php": ">=7.2",
"psr/http-client": "^1.0",
"symfony/yaml": "^4.0 | ^5.0"
},
"require-dev": {
"ext-pcntl": "*",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.42",
"phpunit/phpunit": "^7.5",
"vlucas/phpdotenv": "^4.0",
"symfony/var-dumper": "^4.0"
}
}