-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.57 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.57 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
44
45
46
47
48
{
"name": "discord-php-extended/discordphp-mtg",
"description": "API Library for api.magicthegathering.io built on top of DiscordPHP.",
"license": "MIT",
"authors": [
{
"name": "Valithor Obsidion",
"email": "valithor@discordphp.org"
}
],
"require": {
"team-reflex/discord-php": "^10.47.9"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^9.4.4",
"laravel/pint": "^1.21",
"wyrihaximus/react-cache-redis": "^4.5",
"phpacker/phpacker": "^0.6.4"
},
"scripts": {
"pint": ["./vendor/bin/pint --config ./pint.json ./src"],
"cs": "php-cs-fixer fix",
"cs-unsupported": "php-cs-fixer fix --allow-unsupported-php-version yes",
"unit": "phpunit",
"coverage": ["XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html coverage --testdox"],
"php8.0": ["docker-compose run php8.0 sh"],
"php8.1": ["docker-compose run php8.1 sh"],
"php8.2": ["docker-compose run php8.2 sh"],
"php8.3": ["docker-compose run php8.3 sh"],
"php8.4": ["docker-compose run php8.4 sh"],
"php8.5": ["docker-compose run php8.5 sh"],
"phpacker": "phpacker build --src=bot.php"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"wyrihaximus/composer-update-bin-autoload-path": true
}
},
"autoload": {
"psr-4": {
"MTG\\": "src/MTG/",
"Discord\\": "src/Discord/"
}
}
}