forked from Sky/Dragon-Knight
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "valgorithms/dragon-knight",
|
|
"description": "@todo",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Valithor Obsidion",
|
|
"email": "valithor@discordphp.org"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.3",
|
|
"team-reflex/discord-php": "^10.18.45"
|
|
},
|
|
"autoload": {
|
|
"files": [
|
|
"src/DragonKnight/functions.php",
|
|
"src/DragonKnight/DragonKnight.php"
|
|
],
|
|
"psr-4": {
|
|
"DragonKnight\\": "src/DragonKnight"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3",
|
|
"phpunit/phpunit": "^9.4.4",
|
|
"laravel/pint": "^1.21"
|
|
},
|
|
"scripts": {
|
|
"pint": ["./vendor/bin/pint --config ./pint.json ./src"],
|
|
"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"]
|
|
}
|
|
}
|