126 lines
4.1 KiB
JSON
Executable File
126 lines
4.1 KiB
JSON
Executable File
{
|
|
"name": "phpvms/phpvms",
|
|
"description": "phpVMS - Virtual Airline Administration",
|
|
"keywords": ["phpvms", "virtual", "airlines"],
|
|
"license": "BSD-3-Clause",
|
|
"type": "project",
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"homepage": "http://www.phpvms.net",
|
|
"require": {
|
|
"php": ">=7.3",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-bcmath": "*",
|
|
"ext-pdo": "*",
|
|
"ext-intl": "*",
|
|
"symfony/polyfill-intl-icu": "*",
|
|
"symfony/polyfill-intl-idn": "*",
|
|
"symfony/polyfill-mbstring": "*",
|
|
"symfony/polyfill-php80": "*",
|
|
"composer/composer": "~1.0",
|
|
"composer/installers": "~1.0",
|
|
"laravel/framework": "~8.0",
|
|
"akaunting/money": "^1.0",
|
|
"anhskohbo/no-captcha": "^3.0",
|
|
"appstract/laravel-opcache": "^4.0",
|
|
"arrilot/laravel-widgets": "~3.13.0",
|
|
"codedge/laravel-selfupdater": "~3.2.0",
|
|
"doctrine/dbal": "^3.0.0",
|
|
"facade/ignition": "^2.5",
|
|
"fideloper/proxy": "^4.4",
|
|
"guzzlehttp/guzzle": "~6.5",
|
|
"hashids/hashids": "^4.1.0",
|
|
"igaster/laravel-theme": "^2.0",
|
|
"intervention/image": "^2.4",
|
|
"irazasyed/laravel-gamp": "^1.8",
|
|
"jmikola/geojson": "1.0.*",
|
|
"joshbrw/laravel-module-installer": "^2.0",
|
|
"laracasts/flash": "^3.1",
|
|
"laravel/helpers": "^1.4",
|
|
"laravelcollective/html": "~6.2.0",
|
|
"jeremykendall/php-domain-parser": "~5.7.2",
|
|
"league/csv": "9.2.*",
|
|
"league/geotools": "0.8.*",
|
|
"league/iso3166": "^3.0.0",
|
|
"markrogoyski/math-php": "^1.10",
|
|
"myclabs/deep-copy": "~1.10.0",
|
|
"nabeel/vacentral": "~2.0",
|
|
"nwidart/laravel-modules": "^8.2",
|
|
"php-units-of-measure/php-units-of-measure": "~2.1.0",
|
|
"phpvms/sample-module": "^1.0",
|
|
"pragmarx/version": ">=v1.2.3",
|
|
"prettus/l5-repository": "~2.7.0",
|
|
"santigarcor/laratrust": "~6.3",
|
|
"semver/semver": "~1.1.0",
|
|
"spatie/valuestore": "~1.2",
|
|
"symfony/polyfill-iconv": "~1.22.0",
|
|
"tivie/php-os-detector": "~1.1.0",
|
|
"vlucas/phpdotenv": "^5.3.0",
|
|
"webpatser/laravel-uuid": "~4.0",
|
|
"oomphinc/composer-installers-extender": "^2.0",
|
|
"laravel/ui": "^3.2.0",
|
|
"madnest/madzipper": "^1.1.0",
|
|
"elcobvg/laravel-opcache": "^0.4.1",
|
|
"laravel/legacy-factories": "^1.1",
|
|
"fakerphp/faker": "^v1.14",
|
|
"wildbit/swiftmailer-postmark": "^3.3"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.5",
|
|
"barryvdh/laravel-ide-helper": "^2.9",
|
|
"bpocallaghan/generators": "~7.0",
|
|
"filp/whoops": "~2.0",
|
|
"friendsofphp/php-cs-fixer": "^2.16",
|
|
"mockery/mockery": "^1.4.0",
|
|
"nunomaduro/collision": "^5.3.0",
|
|
"phpunit/phpunit": "~9.0",
|
|
"sempro/phpunit-pretty-print": "^1.2"
|
|
},
|
|
"autoload": {
|
|
"classmap": [
|
|
"app/Database"
|
|
],
|
|
"files": [
|
|
"app/helpers.php"
|
|
],
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Modules\\": "modules/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"installer-types": ["phpvms-module"],
|
|
"installer-paths": {
|
|
"modules/{$name}/": ["type:phpvms-module"]
|
|
},
|
|
"module-dir": "modules"
|
|
},
|
|
"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/*'));\""
|
|
],
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi",
|
|
"@php artisan phpvms:caches"
|
|
]
|
|
},
|
|
"config": {
|
|
"bin-dir": "vendor/bin/"
|
|
}
|
|
}
|