phpvms/composer.json
2017-10-10 10:55:28 -05:00

96 lines
3.0 KiB
JSON
Executable File

{
"name": "phpvms/phpvms",
"version": "7.0.0-dev",
"description": "phpVMS - Virtual Airline Administration",
"keywords": ["phpvms", "virtual", "airlines"],
"license": "MIT",
"type": "project",
"minimum-stability": "stable",
"url": "https://github.com/nabeelio/phpvms.git",
"require": {
"php": ">=7.0",
"laravel/framework": "v5.5.x",
"barryvdh/laravel-ide-helper": "v2.4.x",
"yajra/laravel-datatables-oracle": "6.24.1",
"infyomlabs/laravel-generator": "5.5.x-dev",
"php-http/httplug": "v1.1.x",
"laravelcollective/html": "5.5.x",
"infyomlabs/adminlte-templates": "5.5.x-dev",
"doctrine/annotations": "v1.4.x",
"doctrine/cache": "v1.6.x",
"doctrine/collections": "v1.4.x",
"doctrine/common": "v2.7.x",
"doctrine/dbal": "v2.5.x",
"doctrine/inflector": "v1.1.x",
"doctrine/instantiator": "v1.0.x",
"zizaco/entrust": "5.2.x-dev",
"prettus/l5-repository": "2.6.x",
"spatie/laravel-pjax": "1.3.x",
"symfony/yaml": "3.3.x",
"league/geotools": "@stable",
"toin0u/geotools-laravel": "^1.0",
"anlutro/l4-settings": "0.5.x",
"webpatser/laravel-uuid": "2.0.x",
"chrisbjr/api-guard": "4.0.x",
"spatie/laravel-fractal": "5.2.x",
"composer/semver": "1.4.2",
"dg/rss-php": "1.2",
"makinacorpus/php-bloom": "dev-master",
"hashids/hashids": "2.0.*",
"maatwebsite/excel": "2.1.*"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~6.0",
"symfony/css-selector": "3.1.*",
"symfony/dom-crawler": "3.1.*",
"laravel/homestead": "v6.2.2",
"scriptfusion/phpunit-immediate-exception-printer": "^1",
"filp/whoops": "~2.0"
},
"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.dev.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 ide-helper:generate",
"php artisan ide-helper:meta",
"php artisan optimize"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"config": {
"bin-dir": "vendor/bin/",
"secure-http": false,
"disable-tls": true
}
}