86 lines
2.4 KiB
JSON
86 lines
2.4 KiB
JSON
{
|
|
"name": "laravel/laravel",
|
|
"type": "project",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.2.12",
|
|
"berkayk/onesignal-laravel": "^1.0",
|
|
"coderello/laravel-passport-social-grant": "^3.0",
|
|
"fideloper/proxy": "^4.0",
|
|
"gonoware/laravel-maps": "^2.0.0",
|
|
"google/cloud-storage": "*",
|
|
"guzzlehttp/guzzle": "^7.3",
|
|
"illuminate/database": "^9.0",
|
|
"intervention/image": "^2.5",
|
|
"laravel/framework": "^9.0",
|
|
"laravel/passport": "^10.3",
|
|
"laravel/socialite": "^5.1",
|
|
"laravel/tinker": "^2.0",
|
|
"laravel/ui": "^4.6",
|
|
"laravelcollective/html": "^6.4",
|
|
"lcobucci/jwt": "^4.1",
|
|
"mercadopago/dx-php": "3.5.1",
|
|
"missael-anda/laravel-whatsapp": "^0.8.6",
|
|
"openpay/sdk": "dev-master",
|
|
"tarfin-labs/laravel-spatial": "*",
|
|
"timehunter/laravel-google-recaptcha-v3": "^2.4"
|
|
},
|
|
"require-dev": {
|
|
"beyondcode/laravel-dump-server": "^1.0",
|
|
"filp/whoops": "^2.0",
|
|
"fzaninotto/faker": "^1.4",
|
|
"mockery/mockery": "^1.0",
|
|
"nunomaduro/collision": "^7.0",
|
|
"phpunit/phpunit": "^10.5"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": 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"
|
|
],
|
|
"post-install-cmd": [
|
|
"chmod -R 775 storage",
|
|
"chmod -R 755 bootstrap\/cache",
|
|
"php artisan optimize:clear",
|
|
"php artisan cache:clear"
|
|
]
|
|
}
|
|
}
|