23eb9dcbda
* 384 Laravel 6 changes * Library versions * Update package versions * Add keyType to models * Remove unused dependencies * StyleCI fixes * Fix models for test * Fix tests output and update test runner * Unused imports * Update exceptions handler * Fix login page
105 lines
3.2 KiB
JSON
Executable File
105 lines
3.2 KiB
JSON
Executable File
{
|
|
"name": "phpvms/phpvms",
|
|
"description": "phpVMS - Virtual Airline Administration",
|
|
"keywords": ["phpvms", "virtual", "airlines"],
|
|
"license": "BSD-3-Clause",
|
|
"type": "project",
|
|
"minimum-stability": "stable",
|
|
"homepage": "http://www.phpvms.net",
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-pdo": "*",
|
|
"composer/composer": "~1.8.0",
|
|
"laravel/framework": "~6.0.0",
|
|
"akaunting/money": "^1.0",
|
|
"anhskohbo/no-captcha": "^3.0",
|
|
"appstract/laravel-opcache": "^2.0",
|
|
"arrilot/laravel-widgets": "~3.13.0",
|
|
"doctrine/dbal": "~2.9.2",
|
|
"elcobvg/laravel-opcache": "~0.4",
|
|
"guzzlehttp/guzzle": "~6.3.3",
|
|
"hashids/hashids": "^2.0.0",
|
|
"igaster/laravel-theme": "^2.0",
|
|
"intervention/image": "2.4.*",
|
|
"irazasyed/laravel-gamp": "^1.4",
|
|
"jmikola/geojson": "1.0.*",
|
|
"joshbrw/laravel-module-installer": "0.1.*",
|
|
"laracasts/flash": "^3.0",
|
|
"laravel/helpers": "^1.0",
|
|
"laravelcollective/html": "~6.0.0",
|
|
"league/csv": "9.2.*",
|
|
"league/geotools": "0.8.*",
|
|
"league/iso3166": "2.1.*",
|
|
"markrogoyski/math-php": "^0.38.0",
|
|
"myclabs/deep-copy": "1.8.*",
|
|
"nabeel/vacentral": "~2.0",
|
|
"nwidart/laravel-modules": "~5.1",
|
|
"php-units-of-measure/php-units-of-measure": "~2.1.0",
|
|
"pragmarx/version": "0.2.*",
|
|
"prettus/l5-repository": "~2.6.0",
|
|
"santigarcor/laratrust": "~5.2.0",
|
|
"sebastiaanluca/laravel-helpers": "~4.0",
|
|
"semver/semver": "~1.1.0",
|
|
"spatie/laravel-backup": "~6.3",
|
|
"spatie/valuestore": "~1.2.3",
|
|
"symfony/polyfill-iconv": "~1.12",
|
|
"theiconic/php-ga-measurement-protocol": "2.7.*",
|
|
"tivie/php-os-detector": "~1.1.0",
|
|
"webpatser/laravel-uuid": "~3.0",
|
|
"facade/ignition": "^1.6"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.0",
|
|
"barryvdh/laravel-ide-helper": "^2.0",
|
|
"bpocallaghan/generators": "5.0.1",
|
|
"codedungeon/phpunit-result-printer": "^0.13.0",
|
|
"filp/whoops": "~2.0",
|
|
"fzaninotto/faker": "~1.8.0",
|
|
"friendsofphp/php-cs-fixer": "^2.15",
|
|
"mockery/mockery": "0.9.*",
|
|
"nunomaduro/collision": "^2.0",
|
|
"phpunit/phpunit": "7.5.*",
|
|
"squizlabs/php_codesniffer": "3.*"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"app/Database"
|
|
],
|
|
"files": [
|
|
"app/helpers.php"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Modules\\": "modules/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
},
|
|
"classmap": [
|
|
"tests/TestCase.php"
|
|
]
|
|
},
|
|
"extra": {
|
|
"installer-paths": {
|
|
"modules/{$name}/": [
|
|
"type:laravel-library",
|
|
"type:phpvms-plugin"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
]
|
|
},
|
|
"config": {
|
|
"bin-dir": "vendor/bin/"
|
|
}
|
|
}
|