93 lines
2.9 KiB
JSON
93 lines
2.9 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"type": "project",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.1",
|
|
"ext-fileinfo": "*",
|
|
"ext-simplexml": "*",
|
|
"guzzlehttp/guzzle": "^7.2",
|
|
"laravel/framework": "^9.11",
|
|
"laravel/sanctum": "^2.14.1",
|
|
"laravel/tinker": "^2.7",
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
|
"maatwebsite/excel": "^3.1",
|
|
"owen-it/laravel-auditing": "^13.0",
|
|
"zanysoft/laravel-zip": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"fakerphp/faker": "^1.9.1",
|
|
"laravel/sail": "^1.14.2",
|
|
"lucascudo/laravel-pt-br-localization": "^1.2",
|
|
"mockery/mockery": "^1.4.4",
|
|
"nunomaduro/collision": "^6.1",
|
|
"phpunit/phpunit": "^9.5.10",
|
|
"spatie/laravel-ignition": "^1.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
},
|
|
"files": [
|
|
"app/Helpers/CustomHelpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"generate-key": [
|
|
"@php artisan key:generate --ansi"
|
|
],
|
|
"cached": [
|
|
"@php artisan optimize --ansi",
|
|
"@php artisan view:clear --ansi",
|
|
"@php artisan view:cache --ansi",
|
|
"@php artisan route:clear --ansi",
|
|
"@php artisan event:cache --ansi"
|
|
],
|
|
"clear-cached": [
|
|
"@php artisan optimize:clear",
|
|
"@php artisan cache:clear --ansi",
|
|
"@php artisan view:clear --ansi",
|
|
"@php artisan route:clear --ansi",
|
|
"@php artisan event:clear --ansi",
|
|
"@php artisan config:clear --ansi",
|
|
"@php artisan schedule:clear-cache --ansi"
|
|
],
|
|
"authorized-files": "sudo chown -R www-data:www-data storage/ storage/framework/cache storage/framework/cache/data bootstrap/cache/ public/",
|
|
"dev": "@php artisan serve --host=0.0.0.0 --port=8080 --ansi"
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|