forked from butschster/kraken-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "butschster/kraken-api-client",
"type": "library",
"description": "The most powerful and extendable REST API / Websocket client for Kraken.com. Built on PHP8.0",
"keywords": [
"laravel",
"php",
"php8",
"kraken",
"kraken.com",
"api",
"rest api",
"websocket client",
"HTTP client"
],
"license": "MIT",
"authors": [
{
"name": "Pavel Buchnev",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.5",
"illuminate/support": "^8|^9.0",
"jms/serializer": "^3.12",
"brick/money": "^0.7.0",
"ratchet/pawl": "^0.4.1",
"webmozart/assert": "^1.10"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.4"
},
"autoload": {
"psr-4": {
"Butschster\\Kraken\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kraken\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Butschster\\Kraken\\KrakenServiceProvider"
]
}
}
}