Initial commit - Last War messaging system
This commit is contained in:
61
vendor/team-reflex/discord-php/composer.json
vendored
Executable file
61
vendor/team-reflex/discord-php/composer.json
vendored
Executable file
@@ -0,0 +1,61 @@
|
||||
{
|
||||
"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": "david.cole1340@gmail.com"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/discord-php/DiscordPHP/issues",
|
||||
"wiki": "https://github.com/discord-php/DiscordPHP/wiki",
|
||||
"docs": "https://discord-php.github.io/DiscordPHP/",
|
||||
"chat": "https://discord.gg/dphp"
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.4|^8.0",
|
||||
"nesbot/carbon": "^2.38",
|
||||
"ratchet/pawl": "^0.4.1",
|
||||
"react/datagram": "1.5.*",
|
||||
"symfony/options-resolver": "^5.1.3 || ^6.0",
|
||||
"trafficcophp/bytebuffer": "^0.3",
|
||||
"monolog/monolog": "^2.1 || ^3.0",
|
||||
"react/partial": "^3.0",
|
||||
"mollie/polyfill-libsodium": "^1.1",
|
||||
"react/http": "^1.1",
|
||||
"ext-json": "*",
|
||||
"ext-zlib": "*",
|
||||
"discord-php/http": "^9.0.12",
|
||||
"react/child-process": "^0.6.2",
|
||||
"discord/interactions": "^2.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/var-dumper": "*",
|
||||
"friendsofphp/php-cs-fixer": "^3",
|
||||
"phpunit/phpunit": "^9.4",
|
||||
"davidcole1340/reactsh": "dev-master"
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/Discord/functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Discord\\": "src/Discord"
|
||||
}
|
||||
},
|
||||
"suggest": {
|
||||
"ext-uv": "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.",
|
||||
"ext-mbstring": "For accurate calculations of string length when handling non-english characters.",
|
||||
"ext-gmp": "For Permissions and 64 bit calculations on x86 (32 bit) PHP.",
|
||||
"clue/zlib-react": "For gateway message transport compression with zlib-stream."
|
||||
},
|
||||
"scripts": {
|
||||
"cs": ["./vendor/bin/php-cs-fixer fix"],
|
||||
"unit": ["./vendor/bin/phpunit --testdox"],
|
||||
"coverage": ["XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html coverage --testdox"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user