forked from Alex/Pterodactyl-Panel
97 lines
2.9 KiB
JSON
97 lines
2.9 KiB
JSON
{
|
|
"name": "pterodactyl/panel",
|
|
"description": "The free, open-source game management panel. Supporting Minecraft, Spigot, BungeeCord, and SRCDS servers.",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Dane Everitt",
|
|
"email": "dane@daneeveritt.com",
|
|
"homepage": "https://github.com/DaneEveritt",
|
|
"role": "Lead Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"ext-mbstring": "*",
|
|
"ext-pdo_mysql": "*",
|
|
"ext-zip": "*",
|
|
"aws/aws-sdk-php": "^3.29",
|
|
"daneeveritt/login-notifications": "^1.0",
|
|
"doctrine/dbal": "^2.5",
|
|
"edvinaskrucas/settings": "^2.0",
|
|
"fideloper/proxy": "^3.3",
|
|
"guzzlehttp/guzzle": "~6.3.0",
|
|
"hashids/hashids": "^2.0",
|
|
"igaster/laravel-theme": "^1.16",
|
|
"laracasts/utilities": "^3.0",
|
|
"laravel/framework": "5.4.27",
|
|
"laravel/tinker": "1.0.1",
|
|
"lord/laroute": "~2.4.5",
|
|
"mtdowling/cron-expression": "^1.2",
|
|
"nesbot/carbon": "^1.22",
|
|
"nicolaslopezj/searchable": "^1.9",
|
|
"pragmarx/google2fa": "^1.0",
|
|
"predis/predis": "^1.1",
|
|
"prologue/alerts": "^0.4",
|
|
"ramsey/uuid": "^3.7",
|
|
"s1lentium/iptools": "^1.1",
|
|
"sofa/eloquence": "~5.4.1",
|
|
"spatie/laravel-fractal": "^4.0",
|
|
"watson/validating": "^3.0",
|
|
"webmozart/assert": "^1.2",
|
|
"webpatser/laravel-uuid": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^2.4",
|
|
"barryvdh/laravel-ide-helper": "^2.4",
|
|
"friendsofphp/php-cs-fixer": "~2.4.0",
|
|
"fzaninotto/faker": "^1.6",
|
|
"mockery/mockery": "^0.9",
|
|
"php-mock/php-mock-phpunit": "^1.1",
|
|
"phpunit/phpunit": "^5.7"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"files": [
|
|
"app/helpers.php"
|
|
],
|
|
"psr-4": {
|
|
"Pterodactyl\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"pre-install-cmd": [
|
|
"rm -f bootstrap/cache/services.php bootstrap/cache/compiled.php"
|
|
],
|
|
"pre-update-cmd": [
|
|
"rm -f bootstrap/cache/services.php bootstrap/cache/compiled.php"
|
|
],
|
|
"post-install-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postInstall",
|
|
"php artisan optimize",
|
|
"php artisan config:cache"
|
|
],
|
|
"post-update-cmd": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
|
|
"php artisan optimize",
|
|
"php artisan config:cache"
|
|
]
|
|
},
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"platform": {
|
|
"php": "7.0"
|
|
},
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"optimize-autoloader": true
|
|
}
|
|
}
|