44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "discord-php-helpers/voice",
|
|
"description": "A voice library for DiscordPHP",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "David Cole",
|
|
"email": "david.cole1340@gmail.com"
|
|
},
|
|
{
|
|
"name": "Alexandre Candeias",
|
|
"email": "alexandreluisbarreto@gmail.com"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/discord-php/DiscordPHP-Voice/issues",
|
|
"wiki": "https://github.com/discord-php/DiscordPHP/wiki",
|
|
"docs": "https://discord-php.github.io/DiscordPHP/",
|
|
"chat": "https://discord.gg/dphp"
|
|
},
|
|
"require": {
|
|
"php": "^8.1.2"
|
|
},
|
|
"require-dev": {
|
|
"team-reflex/discord-php": "dev-master",
|
|
"ext-ffi": "*",
|
|
"friendsofphp/php-cs-fixer": "^3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Discord\\": "src/Discord"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"pint": ["./vendor/bin/pint --config ./pint.json"],
|
|
"cs": ["./vendor/bin/php-cs-fixer fix"],
|
|
"cs-unsupported": ["./vendor/bin/php-cs-fixer fix --allow-unsupported-php-version yes"],
|
|
"unit": ["./vendor/bin/phpunit --testdox"],
|
|
"coverage": ["XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html coverage --testdox"]
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|