2015-12-06 19:58:49 +01:00
|
|
|
{
|
2017-06-04 00:05:31 +02:00
|
|
|
"name": "pterodactyl/panel",
|
2016-01-20 01:10:39 +01:00
|
|
|
"description": "The free, open-source game management panel. Supporting Minecraft, Spigot, BungeeCord, and SRCDS servers.",
|
2016-01-20 21:56:40 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Dane Everitt",
|
|
|
|
"email": "dane@daneeveritt.com",
|
|
|
|
"homepage": "https://github.com/DaneEveritt",
|
|
|
|
"role": "Lead Developer"
|
|
|
|
}
|
|
|
|
],
|
2015-12-06 19:58:49 +01:00
|
|
|
"require": {
|
2020-06-24 06:24:37 +02:00
|
|
|
"php": "^7.2",
|
2017-07-23 03:15:01 +02:00
|
|
|
"ext-mbstring": "*",
|
|
|
|
"ext-pdo_mysql": "*",
|
|
|
|
"ext-zip": "*",
|
2020-04-03 21:58:20 +02:00
|
|
|
"appstract/laravel-blade-directives": "^1.8",
|
|
|
|
"aws/aws-sdk-php": "^3.134",
|
|
|
|
"cakephp/chronos": "^1.3",
|
|
|
|
"doctrine/dbal": "^2.10",
|
2019-09-05 05:19:01 +02:00
|
|
|
"fideloper/proxy": "^4.2",
|
2020-04-03 21:58:20 +02:00
|
|
|
"guzzlehttp/guzzle": "^6.5",
|
2019-09-05 05:19:01 +02:00
|
|
|
"hashids/hashids": "^4.0",
|
2020-04-03 21:58:20 +02:00
|
|
|
"laracasts/utilities": "^3.1",
|
2020-06-24 06:24:37 +02:00
|
|
|
"laravel/framework": "^7.17",
|
2020-04-03 21:58:20 +02:00
|
|
|
"laravel/helpers": "^1.2",
|
2020-06-24 06:24:37 +02:00
|
|
|
"laravel/tinker": "^2.4",
|
|
|
|
"laravel/ui": "^2.0",
|
2019-09-25 05:20:29 +02:00
|
|
|
"lcobucci/jwt": "^3.3",
|
2020-04-27 01:07:36 +02:00
|
|
|
"league/flysystem-aws-s3-v3": "^1.0",
|
|
|
|
"league/flysystem-memory": "^1.0",
|
2017-12-15 04:05:26 +01:00
|
|
|
"matriphe/iso-639": "^1.2",
|
2019-04-27 20:18:12 +02:00
|
|
|
"pragmarx/google2fa": "^5.0",
|
2017-09-03 02:39:49 +02:00
|
|
|
"predis/predis": "^1.1",
|
|
|
|
"prologue/alerts": "^0.4",
|
2020-06-24 06:24:37 +02:00
|
|
|
"psy/psysh": "^0.10.4",
|
2017-09-03 02:39:49 +02:00
|
|
|
"s1lentium/iptools": "^1.1",
|
2020-04-03 21:58:20 +02:00
|
|
|
"spatie/laravel-fractal": "^5.7",
|
2020-07-07 06:25:00 +02:00
|
|
|
"spatie/laravel-query-builder": "^2.8",
|
2020-06-24 06:24:37 +02:00
|
|
|
"staudenmeir/belongs-to-through": "^2.10",
|
2020-04-03 21:58:20 +02:00
|
|
|
"symfony/yaml": "^4.4",
|
2020-06-24 06:24:37 +02:00
|
|
|
"webmozart/assert": "^1.9"
|
2015-12-06 19:58:49 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-06-24 06:24:37 +02:00
|
|
|
"barryvdh/laravel-debugbar": "^3.3",
|
|
|
|
"barryvdh/laravel-ide-helper": "^2.7",
|
2020-06-24 06:59:37 +02:00
|
|
|
"codedungeon/phpunit-result-printer": "^0.28.0",
|
2020-06-24 06:24:37 +02:00
|
|
|
"friendsofphp/php-cs-fixer": "2.16.1",
|
2020-06-24 06:25:44 +02:00
|
|
|
"fzaninotto/faker": "^1.9",
|
2020-06-24 06:24:37 +02:00
|
|
|
"laravel/dusk": "^6.3",
|
2020-06-24 06:25:44 +02:00
|
|
|
"mockery/mockery": "^1.4",
|
2020-04-03 21:58:20 +02:00
|
|
|
"php-mock/php-mock-phpunit": "^2.6",
|
2020-06-24 06:24:37 +02:00
|
|
|
"phpunit/phpunit": "^8.5"
|
2015-12-06 19:58:49 +01:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"classmap": [
|
|
|
|
"database"
|
|
|
|
],
|
2017-08-19 05:19:06 +02:00
|
|
|
"files": [
|
|
|
|
"app/helpers.php"
|
|
|
|
],
|
2015-12-06 19:58:49 +01:00
|
|
|
"psr-4": {
|
|
|
|
"Pterodactyl\\": "app/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
2017-04-01 23:59:43 +02:00
|
|
|
"psr-4": {
|
2018-06-01 06:45:49 +02:00
|
|
|
"Pterodactyl\\Tests\\Browser\\": "tests/Browser",
|
2018-03-04 23:30:16 +01:00
|
|
|
"Pterodactyl\\Tests\\Integration\\": "tests/Integration",
|
2017-04-01 23:59:43 +02:00
|
|
|
"Tests\\": "tests/"
|
|
|
|
}
|
2015-12-06 19:58:49 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-12-16 19:20:09 +01:00
|
|
|
"post-root-package-install": [
|
|
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
2015-12-06 19:58:49 +01:00
|
|
|
],
|
2017-12-16 19:20:09 +01:00
|
|
|
"post-create-project-cmd": [
|
|
|
|
"@php artisan key:generate"
|
|
|
|
],
|
|
|
|
"post-autoload-dump": [
|
|
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
|
|
"@php artisan package:discover"
|
2015-12-06 19:58:49 +01:00
|
|
|
]
|
|
|
|
},
|
2017-04-14 23:10:01 +02:00
|
|
|
"prefer-stable": true,
|
2015-12-06 19:58:49 +01:00
|
|
|
"config": {
|
2017-04-01 23:59:43 +02:00
|
|
|
"preferred-install": "dist",
|
|
|
|
"sort-packages": true,
|
2018-07-15 00:07:19 +02:00
|
|
|
"optimize-autoloader": false
|
2015-12-06 19:58:49 +01:00
|
|
|
}
|
|
|
|
}
|