-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.05 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
{
"name": "notf0und/binance-ws",
"description": "Binance Websockets Client for Laravel",
"license": "MIT",
"authors": [
{
"name": "Fabián Gonzalo Artur de la Villarmois",
"email": "gonzartur@gmail.com",
"homepage": "https://github.com/notf0und"
}
],
"homepage": "https://github.com/notf0und/binance-ws",
"keywords": [
"Laravel",
"Binance",
"Websockets",
"Cryptocurrency",
"BinanceWS"
],
"require": {
"illuminate/support": "^10.1",
"ratchet/pawl": "^0.4.1"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"Notf0und\\BinanceWS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Notf0und\\BinanceWS\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Notf0und\\BinanceWS\\BinanceWSServiceProvider"
]
}
}
}