- Install Laravel Maps package for Leaflet.js and OpenStreetMap support - Provides Blade components for embedding maps without Google Maps dependency - Supports OpenStreetMap tiles (free, no API key required) or Mapbox Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
84 lines
2.4 KiB
JSON
Executable File
84 lines
2.4 KiB
JSON
Executable File
{
|
|
"name": "laravel/laravel",
|
|
"type": "project",
|
|
"description": "The Laravel Framework.",
|
|
"keywords": [
|
|
"framework",
|
|
"laravel"
|
|
],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"berkayk/onesignal-laravel": "^2.0",
|
|
"coderello/laravel-passport-social-grant": "^4.0",
|
|
"google/cloud-storage": "*",
|
|
"guzzlehttp/guzzle": "^7.8",
|
|
"illuminate/database": "^11.0",
|
|
"intervention/image": "^3.0",
|
|
"laravel/framework": "^11.0",
|
|
"laravel/passport": "^13.0",
|
|
"laravel/socialite": "^5.10",
|
|
"laravel/tinker": "^2.9",
|
|
"laravel/ui": "^4.6",
|
|
"larswiegers/laravel-maps": "^0.19.0",
|
|
"lcobucci/jwt": "^5.0",
|
|
"mercadopago/dx-php": "^3.5",
|
|
"missael-anda/laravel-whatsapp": "^0.8.6",
|
|
"openpay/sdk": "^2.0",
|
|
"spatie/laravel-google-cloud-storage": "^2.3",
|
|
"spatie/laravel-html": "^3.0",
|
|
"tarfin-labs/laravel-spatial": "*",
|
|
"timehunter/laravel-google-recaptcha-v3": "^2.4"
|
|
},
|
|
"require-dev": {
|
|
"fakerphp/faker": "^1.23",
|
|
"laravel/pint": "^1.13",
|
|
"laravel/sail": "^1.26",
|
|
"mockery/mockery": "^1.6",
|
|
"nunomaduro/collision": "^8.0",
|
|
"phpunit/phpunit": "^11.0"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|