-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.33 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.33 KB
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
{
"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
}