phpvms/composer.json

121 lines
3.9 KiB
JSON
Raw Normal View History

2017-12-16 02:36:13 +08:00
{
2017-06-17 21:11:07 +08:00
"name": "phpvms/phpvms",
2017-06-09 09:56:57 +08:00
"description": "phpVMS - Virtual Airline Administration",
2017-06-09 09:57:45 +08:00
"keywords": ["phpvms", "virtual", "airlines"],
"license": "BSD-3-Clause",
2017-06-09 02:28:26 +08:00
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
2017-12-29 07:45:57 +08:00
"homepage": "http://www.phpvms.net",
2017-06-09 02:28:26 +08:00
"require": {
2019-05-12 23:10:31 +08:00
"php": ">=7.2",
2018-08-27 02:50:08 +08:00
"ext-json": "*",
"ext-mbstring": "*",
"ext-simplexml": "*",
2018-08-27 02:50:08 +08:00
"ext-pdo": "*",
"composer/composer": "~1.8.0",
"composer/installers": "~1.0",
"laravel/framework": "~6.0",
"akaunting/money": "^1.0",
"anhskohbo/no-captcha": "^3.0",
2019-05-12 23:51:06 +08:00
"appstract/laravel-opcache": "^2.0",
"arrilot/laravel-widgets": "~3.13.0",
"codedge/laravel-selfupdater": "^2.5",
"doctrine/dbal": "~2.9.2",
"elcobvg/laravel-opcache": "~0.4",
"facade/ignition": "^1.6",
"guzzlehttp/guzzle": "~6.3.3",
"hashids/hashids": "^2.0.0",
"igaster/laravel-theme": "^2.0",
2019-05-12 23:10:31 +08:00
"intervention/image": "2.4.*",
"irazasyed/laravel-gamp": "^1.4",
2019-05-12 23:10:31 +08:00
"jmikola/geojson": "1.0.*",
"joshbrw/laravel-module-installer": "0.1.*",
"laracasts/flash": "^3.0",
2019-05-12 23:51:06 +08:00
"laravel/helpers": "^1.0",
"laravelcollective/html": "~6.0.0",
2019-05-12 23:10:31 +08:00
"league/csv": "9.2.*",
"league/geotools": "0.8.*",
"league/iso3166": "2.1.*",
2019-05-12 03:11:15 +08:00
"markrogoyski/math-php": "^0.38.0",
"myclabs/deep-copy": "~1.9.0",
"nabeel/vacentral": "~2.0",
"nwidart/laravel-modules": "^6.0",
"php-units-of-measure/php-units-of-measure": "~2.1.0",
2019-05-12 23:10:31 +08:00
"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",
2019-05-12 23:10:31 +08:00
"theiconic/php-ga-measurement-protocol": "2.7.*",
"tivie/php-os-detector": "~1.1.0",
"webpatser/laravel-uuid": "~3.0",
"oomphinc/composer-installers-extender": "^1.1",
"phpvms/sample-module": "^1.0"
2017-06-09 02:28:26 +08:00
},
"require-dev": {
2018-09-09 21:38:26 +08:00
"barryvdh/laravel-debugbar": "^3.0",
"barryvdh/laravel-ide-helper": "^2.6",
2017-12-29 08:00:35 +08:00
"bpocallaghan/generators": "5.0.1",
2019-05-13 01:08:31 +08:00
"codedungeon/phpunit-result-printer": "^0.13.0",
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.9.0",
"friendsofphp/php-cs-fixer": "^2.16",
2019-05-13 01:08:31 +08:00
"mockery/mockery": "0.9.*",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "~8.3",
2019-05-13 01:08:31 +08:00
"squizlabs/php_codesniffer": "3.*"
2017-06-09 02:28:26 +08:00
},
"autoload": {
"classmap": [
"app/Database"
2017-06-09 02:28:26 +08:00
],
2017-12-12 12:27:59 +08:00
"files": [
"app/helpers.php"
],
2017-06-09 02:28:26 +08:00
"psr-4": {
2017-12-02 04:34:37 +08:00
"App\\": "app/",
"Modules\\": "modules/"
2017-06-09 02:28:26 +08:00
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
2017-06-09 02:28:26 +08:00
"classmap": [
"tests/TestCase.php"
]
2017-12-14 12:42:45 +08:00
},
"extra": {
"installer-types": ["phpvms-module"],
2017-12-14 12:42:45 +08:00
"installer-paths": {
"modules/{$name}/": ["type:phpvms-module"]
},
"module-dir": "modules"
2017-06-09 02:28:26 +08:00
},
"scripts": {
"pre-package-uninstall": [
"@php -r \"array_map('unlink', glob('bootstrap/cache/*'));\""
],
"post-package-uninstall": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan phpvms:caches"
],
"pre-autoload-dump": [
"@php -r \"array_map('unlink', glob('bootstrap/cache/*'));\""
],
2017-10-10 23:55:28 +08:00
"post-autoload-dump": [
2017-12-03 00:26:25 +08:00
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan phpvms:caches"
2017-06-09 02:28:26 +08:00
]
},
"config": {
2018-02-20 11:56:41 +08:00
"bin-dir": "vendor/bin/"
2017-06-09 02:28:26 +08:00
}
}