-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (43 loc) · 1.09 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": "codenix-sv/bitfinex-api-ws",
"type": "library",
"description": "PHP WebSocket client PHP for the Bitfinex API",
"homepage": "https://github.com/codenix-sv/bitfinex-api-ws",
"keywords": [
"bitfinex",
"bitcoin",
"btc",
"ws",
"web-socket",
"bitfinex-api",
"bitfinex-ws"
],
"license": "MIT",
"support": {
"issues": "https://github.com/codenix-sv/bitfinex-api-ws/issues?state=open",
"source": "https://github.com/codenix-sv/bitfinex-api-ws"
},
"authors": [
{
"name": "Volodymyr Svyryd",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"ext-json": "*",
"react/socket": "^1.4.0",
"ratchet/pawl": "^0.3.4"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": { "Codenixsv\\BitfinexWs\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Codenixsv\\BitfinexWs\\Tests\\": "tests/"}
},
"prefer-stable": true
}