forked from discord-php/DiscordPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.47 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
50
51
52
53
{
"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.2",
"guzzlehttp/guzzle": "~5.3|~6.0",
"illuminate/support": "^4.0|^5.0|^6.0|^7.0|^8.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",
"react/partial": "^2.0",
"mollie/polyfill-libsodium": "^1.1",
"react/http": "^1.1",
"ext-json": "*",
"ext-zlib": "*"
},
"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"
]
}
}