phpvms/composer.json

102 lines
3.1 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",
2017-12-12 11:01:31 +08:00
"minimum-stability": "stable",
2017-12-29 07:45:57 +08:00
"homepage": "http://www.phpvms.net",
2017-06-09 02:28:26 +08:00
"require": {
"php": ">=7.1",
2018-02-20 01:09:56 +08:00
"laravel/framework": "5.6.*",
2017-12-29 11:17:26 +08:00
"php-http/httplug": "1.1.0",
2018-02-20 01:09:56 +08:00
"laravelcollective/html": "5.6.x",
"prettus/l5-repository": "2.6.x",
"spatie/laravel-pjax": "1.3.x",
2018-02-20 01:09:56 +08:00
"league/geotools": "0.7.x-dev",
"toin0u/geotools-laravel": "1.0.x",
"webpatser/laravel-uuid": "3.0.x",
"composer/semver": "1.4.x",
"hashids/hashids": "2.0.x",
2018-02-20 01:09:56 +08:00
"nwidart/laravel-modules": "^3.0",
"sebastiaanluca/laravel-helpers": "1.0.x",
2017-12-12 12:26:21 +08:00
"jackiedo/timezonelist": "5.x",
"tivie/php-os-detector": "1.1.x",
"santigarcor/laratrust": "5.0.x",
"pragmarx/version": "0.2.x",
"guzzlehttp/guzzle": "6.3.x",
"jmikola/geojson": "1.0.x",
"laracasts/flash": "3.0.x",
"arrilot/laravel-widgets": "3.9.x",
"nabeel/vacentral": "1.0.x",
"league/iso3166": "2.1.x",
"google/apiclient": "2.2.x",
"theiconic/php-ga-measurement-protocol": "2.7.x",
"joshbrw/laravel-module-installer": "0.1.x",
"irazasyed/laravel-gamp": "1.3.x",
2018-02-11 11:16:32 +08:00
"vierbergenlars/php-semver": "3.0.x",
"php-units-of-measure/php-units-of-measure": "2.1.x"
2017-06-09 02:28:26 +08:00
},
"require-dev": {
2018-02-20 01:09:56 +08:00
"phpunit/phpunit": "~7.0",
2017-12-29 11:17:26 +08:00
"barryvdh/laravel-ide-helper": "2.4.x",
2017-06-09 02:28:26 +08:00
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
2017-12-02 04:34:37 +08:00
"filp/whoops": "~2.0",
2017-12-29 08:00:35 +08:00
"bpocallaghan/generators": "5.0.1",
"zircote/swagger-php": "2.0.13",
2018-02-20 01:09:56 +08:00
"nunomaduro/collision": "^2.0"
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/",
"Tests\\": "tests/"
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-paths": {
"modules/{$name}/": ["type:laravel-library"]
}
2017-06-09 02:28:26 +08:00
},
"scripts": {
"post-root-package-install": [
2017-08-04 11:14:38 +08:00
"php -r \"file_exists('.env') || copy('.env.dev.example', '.env');\""
2017-06-09 02:28:26 +08:00
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
2017-06-09 02:28:26 +08:00
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan ide-helper:generate",
"php artisan ide-helper:meta"
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"
2017-06-09 02:28:26 +08:00
]
},
"config": {
2017-06-14 01:50:03 +08:00
"bin-dir": "vendor/bin/",
"secure-http": false,
"disable-tls": true
2017-06-09 02:28:26 +08:00
}
}