mirror of
https://github.com/the-programmers-hangout/Hermes.git
synced 2026-09-04 01:06:00 +02:00
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "laracord/laracord",
|
|
"type": "project",
|
|
"description": "Create Discord bots harnessing the full power of Laravel.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel",
|
|
"discord"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"laracord/framework": "^2.3"
|
|
},
|
|
"require-dev": {
|
|
"fakerphp/faker": "^1.23",
|
|
"laravel/pint": "^1.15"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": [
|
|
"@php scripts/php-lint.php"
|
|
],
|
|
"format:check": [
|
|
"vendor/bin/pint --test"
|
|
],
|
|
"ci": [
|
|
"@composer validate --strict",
|
|
"@composer lint",
|
|
"@composer format:check"
|
|
],
|
|
"ci:build": [
|
|
"php laracord app:build"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true,
|
|
"allow-plugins": {
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|