phpvms/composer.json

124 lines
4.0 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": "*",
"ext-bcmath": "*",
2018-08-27 02:50:08 +08:00
"ext-pdo": "*",
2020-05-16 06:20:16 +08:00
"composer/composer": "~1.0",
"composer/installers": "~1.0",
2020-05-16 06:20:16 +08:00
"laravel/framework": "~7.0",
"akaunting/money": "^1.0",
"anhskohbo/no-captcha": "^3.0",
2020-05-16 06:20:16 +08:00
"appstract/laravel-opcache": "^4.0",
"arrilot/laravel-widgets": "~3.13.0",
2020-05-16 06:20:16 +08:00
"codedge/laravel-selfupdater": "~3.0.0",
"doctrine/dbal": "~2.9.2",
2020-05-16 06:20:16 +08:00
"facade/ignition": "^2.0",
"fideloper/proxy": "^4.3",
2020-05-16 06:20:16 +08:00
"guzzlehttp/guzzle": "~6.5",
"hashids/hashids": "^2.0.0",
"igaster/laravel-theme": "^2.0",
2019-05-12 23:10:31 +08:00
"intervention/image": "2.4.*",
2020-05-16 06:20:16 +08:00
"irazasyed/laravel-gamp": "^1.6",
2019-05-12 23:10:31 +08:00
"jmikola/geojson": "1.0.*",
"joshbrw/laravel-module-installer": "0.1.*",
2020-05-16 06:20:16 +08:00
"laracasts/flash": "^3.1",
"laravel/helpers": "^1.2",
"laravelcollective/html": "~6.1.0",
"layershifter/tld-extract": "^2.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",
2020-05-16 06:20:16 +08:00
"nwidart/laravel-modules": "^7.0",
"php-units-of-measure/php-units-of-measure": "~2.1.0",
"phpvms/sample-module": "^1.0",
2020-05-16 06:20:16 +08:00
"pragmarx/version": "^1.2.2",
"prettus/l5-repository": "~2.6.0",
2020-05-16 06:20:16 +08:00
"santigarcor/laratrust": "~6.0",
"sebastiaanluca/laravel-helpers": "~5.0",
"semver/semver": "~1.1.0",
2020-05-16 06:20:16 +08:00
"spatie/laravel-backup": "~6.9.0",
"spatie/valuestore": "~1.2.3",
2020-05-16 06:20:16 +08:00
"symfony/polyfill-iconv": "~1.17.0",
2019-05-12 23:10:31 +08:00
"theiconic/php-ga-measurement-protocol": "2.7.*",
"tivie/php-os-detector": "~1.1.0",
2020-05-16 06:20:16 +08:00
"vlucas/phpdotenv": "v4.0",
"webpatser/laravel-uuid": "~3.0",
2020-05-16 06:20:16 +08:00
"oomphinc/composer-installers-extender": "^1.1",
"laravel/ui": "^2.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",
2020-05-16 06:20:16 +08:00
"bpocallaghan/generators": "~6.0",
2019-05-13 01:08:31 +08:00
"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.*",
2020-05-16 06:20:16 +08:00
"nunomaduro/collision": "^4.0",
"phpunit/phpunit": "~8.3",
2020-05-16 06:20:16 +08:00
"squizlabs/php_codesniffer": "3.*",
"sempro/phpunit-pretty-print": "^1.2"
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": [
"@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
}
}