71 lines
2.0 KiB
JSON
Executable File
71 lines
2.0 KiB
JSON
Executable File
{
|
|
"name": "phpvms/phpvms",
|
|
"description": "phpVMS - Virtual Airline Administration",
|
|
"keywords": ["phpvms", "virtual", "airlines"],
|
|
"license": "MIT",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=7.0",
|
|
"laravel/framework": "5.4.*",
|
|
"barryvdh/laravel-ide-helper": "^2.1",
|
|
"infyomlabs/laravel-generator": "dev-master",
|
|
"laravelcollective/html": "5.4.x",
|
|
"infyomlabs/adminlte-templates": "5.3.x-dev",
|
|
"infyomlabs/swagger-generator": "dev-master",
|
|
"jlapp/swaggervel": "dev-master",
|
|
"doctrine/dbal": "~2.3",
|
|
"zizaco/entrust": "5.2.x-dev",
|
|
"prettus/l5-repository": "^2.6",
|
|
"spatie/laravel-pjax": "^1.3",
|
|
"symfony/yaml": "^3.3",
|
|
"league/geotools": "@stable",
|
|
"toin0u/geotools-laravel": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"fzaninotto/faker": "~1.4",
|
|
"mockery/mockery": "0.9.*",
|
|
"phpunit/phpunit": "~5.7",
|
|
"symfony/css-selector": "3.1.*",
|
|
"symfony/dom-crawler": "3.1.*",
|
|
"laravel/homestead": "^5.4"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"database"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
},
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"post-root-package-install": [
|
|
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"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"
|
|
]
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"bin-dir": "vendor/bin/",
|
|
"secure-http": false,
|
|
"disable-tls": true
|
|
}
|
|
}
|