phpvms/composer.json
2019-06-18 19:16:29 -04:00

106 lines
3.3 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-calendar": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"composer/composer": "1.8.*",
"composer/semver": "1.4.*",
"laravel/framework": "5.8.*",
"akaunting/money": "1.0.*",
"anhskohbo/no-captcha": "3.0.*",
"appstract/laravel-opcache": "^2.0",
"arrilot/laravel-widgets": "3.13.*",
"fzaninotto/faker": "^1.8",
"guzzlehttp/guzzle": "6.3.*",
"hashids/hashids": "2.0.*",
"igaster/laravel-theme": "2.0.*",
"intervention/image": "2.4.*",
"irazasyed/laravel-gamp": "1.3.*",
"jackiedo/timezonelist": "5.*",
"jmikola/geojson": "1.0.*",
"joshbrw/laravel-module-installer": "0.1.*",
"laracasts/flash": "3.0.*",
"laravel/helpers": "^1.0",
"laravelcollective/html": "^5.8",
"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": "1.*",
"nwidart/laravel-modules": "5.*",
"php-units-of-measure/php-units-of-measure": "2.1.*",
"pragmarx/version": "0.2.*",
"predis/predis": "^1.1",
"prettus/l5-repository": "2.6.*",
"santigarcor/laratrust": "5.2.*",
"sebastiaanluca/laravel-helpers": "3.*",
"spatie/laravel-pjax": "1.3.*",
"symfony/polyfill-iconv": "^1.11",
"theiconic/php-ga-measurement-protocol": "2.7.*",
"tivie/php-os-detector": "1.1.*",
"toin0u/geotools-laravel": "1.0.*",
"vierbergenlars/php-semver": "3.0.*",
"waavi/sanitizer": "1.0.*",
"webpatser/laravel-uuid": "3.*"
},
"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",
"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/"
}
}