-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcomposer.json
33 lines (33 loc) · 953 Bytes
/
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
{
"name": "charlottedunois/yasmin",
"description": "Yasmin is a Discord API library, which interacts with the HTTP REST API, but also with the WebSocket Real Time Gateway.",
"type": "library",
"license": "Apache 2.0",
"authors": [
{
"name": "CharlotteDunois",
"email": "github@charuru.moe"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ratchet/pawl": "^0.3.1",
"react/event-loop": "^0.4.3",
"react/promise": "^2.5.1",
"guzzlehttp/guzzle": "^6.3.0",
"charlottedunois/eventemitter": "^0.1.2",
"charlottedunois/validator": "^0.1.6"
},
"suggest": {
"charlottedunois/erlpack": "For WS encoding etf 🚀"
},
"autoload": {
"psr-4": {
"CharlotteDunois\\Yasmin\\": "src"
}
}
}