phpvms/composer.json

76 lines
2.2 KiB
JSON
Raw Normal View History

2017-06-09 02:28:26 +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"],
2017-06-09 02:28:26 +08:00
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.0",
"laravel/framework": "5.4.*",
2017-06-09 02:28:26 +08:00
"barryvdh/laravel-ide-helper": "^2.1",
2017-06-21 07:49:45 +08:00
"yajra/laravel-datatables-oracle": "~6.0",
"infyomlabs/laravel-generator": "dev-master",
"laravelcollective/html": "5.4.x",
2017-06-09 02:28:26 +08:00
"infyomlabs/adminlte-templates": "5.3.x-dev",
"infyomlabs/swagger-generator": "dev-master",
"jlapp/swaggervel": "dev-master",
"doctrine/dbal": "~2.3",
2017-06-11 10:35:51 +08:00
"zizaco/entrust": "5.2.x-dev",
2017-06-12 07:20:43 +08:00
"prettus/l5-repository": "^2.6",
2017-06-13 11:47:53 +08:00
"spatie/laravel-pjax": "^1.3",
"symfony/yaml": "^3.3",
"league/geotools": "@stable",
"toin0u/geotools-laravel": "^1.0",
2017-06-25 02:20:24 +08:00
"anlutro/l4-settings": "^0.5.0",
2017-06-29 03:01:27 +08:00
"webpatser/laravel-uuid": "^2.0",
"chrisbjr/api-guard": "^4.0",
"spatie/laravel-fractal": "^4.01"
2017-06-09 02:28:26 +08:00
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.7",
2017-06-09 02:28:26 +08:00
"symfony/css-selector": "3.1.*",
2017-06-14 01:50:03 +08:00
"symfony/dom-crawler": "3.1.*",
2017-06-21 22:22:59 +08:00
"laravel/homestead": "^5.4"
2017-06-09 02:28:26 +08:00
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
2017-06-09 02:28:26 +08:00
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
]
},
"config": {
2017-06-14 01:50:03 +08:00
"preferred-install": "dist",
"bin-dir": "vendor/bin/",
"secure-http": false,
"disable-tls": true
2017-06-09 02:28:26 +08:00
}
}