mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix the packaging process to use git describe as a reference Move the generated packages in the build directory, and fix the release and version format in the .spec Refactor and cleanup the .gitlab-ci file Move minimum version to PHP8.0
78 lines
2 KiB
JSON
78 lines
2 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"type": "project",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": ">=8.0",
|
|
"anhskohbo/no-captcha": "^3.3",
|
|
"doctrine/dbal": "^3.1",
|
|
"endroid/qr-code": "^4.1",
|
|
"fideloper/proxy": "^4.4",
|
|
"laravel/framework": "^8.0",
|
|
"laravel/tinker": "^2.4",
|
|
"laravelcollective/html": "^6.2",
|
|
"ovh/ovh": "^2.0",
|
|
"parsedown/laravel": "^1.2",
|
|
"react/socket": "^1.10",
|
|
"respect/validation": "^2.2"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-debugbar": "^3.6",
|
|
"facade/ignition": "^2.3",
|
|
"fzaninotto/faker": "^1.9",
|
|
"mockery/mockery": "^1.4",
|
|
"nunomaduro/collision": "^5.0",
|
|
"phpunit/phpunit": "^9.0",
|
|
"squizlabs/php_codesniffer": "^3.7",
|
|
"phpmd/phpmd": "^2.13"
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.0"
|
|
},
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"composer/package-versions-deprecated": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
},
|
|
"classmap": [
|
|
"database/seeds",
|
|
"database/factories"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
]
|
|
}
|
|
}
|