phpvms/composer.json

101 lines
3.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",
"version": "7.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",
"minimum-stability": "stable",
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",
"laravel/framework": "v5.5.x",
"barryvdh/laravel-ide-helper": "v2.4.x",
"yajra/laravel-datatables-oracle": "6.24.1",
2017-10-10 23:32:59 +08:00
"infyomlabs/laravel-generator": "5.5.x-dev",
"php-http/httplug": "v1.1.x",
"laravelcollective/html": "5.5.x",
2017-10-10 23:32:59 +08:00
"infyomlabs/adminlte-templates": "5.5.x-dev",
"doctrine/annotations": "v1.4.x",
"doctrine/cache": "v1.6.x",
"doctrine/collections": "v1.4.x",
"doctrine/common": "v2.7.x",
"doctrine/dbal": "v2.5.x",
"doctrine/inflector": "v1.1.x",
"doctrine/instantiator": "v1.0.x",
2017-06-11 10:35:51 +08:00
"zizaco/entrust": "5.2.x-dev",
"prettus/l5-repository": "2.6.x",
"spatie/laravel-pjax": "1.3.x",
2017-12-02 11:35:32 +08:00
"symfony/event-dispatcher": "v3.4.0",
"symfony/yaml": "3.3.x",
"league/geotools": "@stable",
"toin0u/geotools-laravel": "^1.0",
"anlutro/l4-settings": "0.5.x",
"webpatser/laravel-uuid": "2.0.x",
"chrisbjr/api-guard": "4.0.x",
"spatie/laravel-fractal": "5.2.x",
"composer/semver": "1.4.2",
"dg/rss-php": "1.2",
2017-08-24 23:51:47 +08:00
"makinacorpus/php-bloom": "dev-master",
"hashids/hashids": "2.0.*",
2017-11-23 01:52:02 +08:00
"maatwebsite/excel": "2.1.*",
"symfony/css-selector": "3.1.*",
2017-11-23 02:07:43 +08:00
"symfony/dom-crawler": "3.3.*",
"phpunit/phpunit": "6.4.0",
2017-12-02 04:34:37 +08:00
"scriptfusion/phpunit-immediate-exception-printer": "1.3.0",
2017-12-02 11:05:59 +08:00
"nwidart/laravel-modules": "^2.6",
"sebastiaanluca/laravel-helpers": "^1.0"
2017-06-09 02:28:26 +08:00
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"laravel/homestead": "v6.2.2",
2017-12-02 04:34:37 +08:00
"filp/whoops": "~2.0",
"orchestra/testbench": "v3.5.2"
2017-06-09 02:28:26 +08:00
},
"autoload": {
"classmap": [
"database"
],
"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"
]
},
"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-10-10 23:55:28 +08:00
],
"post-autoload-dump": [
"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
}
}