phpvms/composer.json

114 lines
3.6 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.25",
"symfony/lts": "v3",
"yajra/laravel-datatables-oracle": "8.3.2",
"infyomlabs/laravel-generator": "5.5.x-dev",
"php-http/httplug": "v1.1.0",
"laravelcollective/html": "5.5.1",
"infyomlabs/adminlte-templates": "5.5.x-dev",
"doctrine/annotations": "v1.4.0",
"doctrine/cache": "v1.6.2",
"doctrine/collections": "v1.4.0",
"doctrine/common": "v2.7.3",
"doctrine/dbal": "v2.5.12",
"doctrine/inflector": "v1.1.0",
"doctrine/instantiator": "v1.0.5",
"prettus/l5-repository": "2.6.28",
"spatie/laravel-pjax": "1.3.1",
"symfony/inflector": "v3.4.2",
"symfony/event-dispatcher": "v3.4.2",
"symfony/yaml": "v3.4.2",
"symfony/css-selector": "v3.4.2",
"symfony/dom-crawler": "v3.4.2",
"league/geotools": "0.7.0",
"toin0u/geotools-laravel": "^1.0",
"webpatser/laravel-uuid": "3.0.1",
"spatie/laravel-fractal": "5.3.0",
"composer/semver": "1.4.2",
"dg/rss-php": "1.2",
"makinacorpus/php-bloom": "dev-master",
"hashids/hashids": "2.0.4",
"maatwebsite/excel": "2.1.23",
"scriptfusion/phpunit-immediate-exception-printer": "1.3.0",
"nwidart/laravel-modules": "2.6.0",
"sebastiaanluca/laravel-helpers": "1.0.2",
"jackiedo/timezonelist": "5.x",
"tivie/php-os-detector": "1.1.0",
"santigarcor/laratrust": "5.0.3",
"pragmarx/version": "0.2.2",
"nabeel/vacentral": "dev-master",
"jmikola/geojson": "1.0.2"
},
"require-dev": {
"phpunit/phpunit": "6.4.0",
"barryvdh/laravel-ide-helper": "v2.4.x",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"filp/whoops": "~2.0",
"orchestra/testbench": "v3.5.2",
"bpocallaghan/generators": "5.0.1",
"laravel/dusk": "^2.0"
},
"autoload": {
"classmap": [
"app/Database"
],
"files": [
"app/helpers.php"
],
"psr-4": {
"App\\": "app/",
"Modules\\": "modules/",
"Tests\\": "tests/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"installer-paths": {
"modules/{$name}/": ["type:laravel-library"]
}
},
"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"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan ide-helper:generate",
"php artisan ide-helper:meta"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
]
},
"config": {
"bin-dir": "vendor/bin/",
"secure-http": false,
"disable-tls": true
}
}