forked from discord-php/DiscordPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.46 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
{
"name": "team-reflex/discord-php",
"description": "An unofficial API to interact with the voice and text service Discord.",
"license": "MIT",
"authors": [
{
"name": "David Cole",
"email": "[email protected]"
},
{
"name": "Aaron Scherer",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6|^7.0",
"cache/array-adapter": "^0.4.0",
"guzzlehttp/guzzle": "~5.3|~6.0",
"illuminate/support": "^4.0|^5.0",
"nesbot/carbon": "^1.18",
"ratchet/pawl": "0.2.*",
"react/datagram": "1.1.*",
"react/socket-client": "0.4.*",
"symfony/options-resolver": "^2.7|^3.0",
"TrafficCophp/ByteBuffer": "^0.3",
"monolog/monolog": "^1.19",
"wyrihaximus/react-guzzle-psr7": "^1.0",
"react/partial": "^2.0"
},
"require-dev": {
"symfony/var-dumper": "^2.7|^3.0"
},
"autoload": {
"files": ["src/Discord/functions.php"],
"psr-4": {
"Discord\\": "src/Discord"
}
},
"suggest": {
"cache/apc-adapter": "Required to use the APC cache driver",
"cache/memcache-adapter": "Required to use the Memcache cache driver",
"cache/memcached-adapter": "Required to use the Memcached cache driver",
"cache/redis-adapter": "Required to use the Redis cache driver",
"ext-libevent": "For a faster, and more performant loop. Preferred",
"ext-libev": "For a faster, and more performant loop",
"ext-event": "For a faster, and more performant loop"
},
"scripts": {}
}