forked from discord-php/DiscordPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.24 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
{
"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": "^7.0",
"guzzlehttp/guzzle": "~5.3|~6.0",
"illuminate/support": "^4.0|^5.0|^6.0|^7.0",
"nesbot/carbon": "^2.38",
"ratchet/pawl": "0.3.*",
"react/datagram": "1.5.*",
"symfony/options-resolver": "^5.1.3",
"trafficcophp/bytebuffer": "^0.3",
"monolog/monolog": "^2.1",
"wyrihaximus/react-guzzle-psr7": "2.1.*",
"react/partial": "^2.0",
"mollie/polyfill-libsodium": "^1.1"
},
"require-dev": {
"symfony/var-dumper": "*",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"files": ["src/Discord/functions.php"],
"psr-4": {
"Discord\\": "src/Discord"
}
},
"suggest": {
"ext-uv": "For a faster, and more performant loop. PHP >=7 only. Preferred.",
"ext-libev": "For a faster, and more performant loop",
"ext-event": "For a faster, and more performant loop"
},
"scripts": {
"cs": ["./vendor/bin/php-cs-fixer fix"]
}
}