phpvms/composer.json

90 lines
2.8 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-07-14 11:30:32 +08:00
"version": "4.0.0-dev",
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",
2017-08-03 12:07:36 +08:00
"url": "https://github.com/nabeelio/phpvms.git",
2017-06-09 02:28:26 +08:00
"require": {
"php": ">=7.0",
2017-08-18 03:01:47 +08:00
"laravel/framework": "v5.4.*",
"barryvdh/laravel-ide-helper": "v2.4.0",
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",
2017-07-24 08:19:24 +08:00
"doctrine/annotations": "v1.4.0",
"doctrine/cache": "v1.6.1",
"doctrine/collections": "v1.4.0",
"doctrine/common": "v2.7.2",
"doctrine/dbal": "v2.5.12",
"doctrine/inflector": "v1.1.0",
2017-07-24 08:23:14 +08:00
"doctrine/instantiator": "v1.0.5",
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",
2017-08-18 03:01:47 +08:00
"spatie/laravel-fractal": "4.2.*",
"composer/semver": "^1.4",
2017-07-26 03:54:42 +08:00
"dg/rss-php": "^1.2",
"makinacorpus/php-bloom": "dev-master"
2017-06-09 02:28:26 +08:00
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
2017-07-24 08:23:14 +08:00
"phpunit/phpunit": "5.7.x",
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-07-24 08:23:14 +08:00
"laravel/homestead": "5.4.x",
2017-07-14 03:29:46 +08:00
"scriptfusion/phpunit-immediate-exception-printer": "^1"
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": [
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",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan ide-helper:generate",
"php artisan ide-helper:meta",
2017-08-18 03:01:47 +08:00
"php artisan optimize"
2017-06-09 02:28:26 +08:00
]
},
"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
}
}