misc_pterodactyl-panel/composer.json

92 lines
2.8 KiB
JSON
Raw Normal View History

{
2016-01-20 00:10:39 +00:00
"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"
},
{
"name": "Dylan Seidt",
"email": "dylan.seidt@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"laravel/framework": "5.3.*",
"barryvdh/laravel-debugbar": "^2.2.3",
"doctrine/dbal": "^2.5.4",
"guzzlehttp/guzzle": "^6.2.1",
"pragmarx/google2fa": "^1.0.1",
"webpatser/laravel-uuid": "^2.0",
"prologue/alerts": "^0.4.0",
"s1lentium/iptools": "^1.1.0",
2016-02-04 23:28:14 +00:00
"edvinaskrucas/settings": "^2.0",
"igaster/laravel-theme": "^1.1.3",
2016-02-29 03:37:58 +00:00
"nesbot/carbon": "^1.21",
"mtdowling/cron-expression": "^1.1"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0",
"symfony/css-selector": "3.1.*",
"symfony/dom-crawler": "3.1.*"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Pterodactyl\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
2016-01-12 03:14:13 +00:00
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
2016-01-12 03:14:13 +00:00
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
2016-01-16 05:37:06 +00:00
],
2016-01-23 19:42:26 +00:00
"setup-dev": [
2016-01-16 05:37:06 +00:00
"composer install",
"php -r \"copy('.env.example', '.env');\"",
"php vendor/bin/homestead make --ip=192.168.10.32",
"sed -i.bak 's/homestead.app/pterodactyl.local/g' Homestead.yaml",
"rm Homestead.yaml.bak",
"php artisan key:generate",
"php artisan pterodactyl:env",
"php artisan migrate",
"php artisan pterodactyl:user"
2016-01-23 19:42:26 +00:00
],
"setup": [
"composer install --ansi --no-dev",
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"php artisan key:generate",
"php artisan pterodactyl:env",
"php artisan migrate",
"php artisan pterodactyl:user"
]
},
"config": {
"preferred-install": "dist"
}
}