Automatic install and set up a laravel project with DDEV-local. Installs base composer packages with laravel breeze and other packages that is usually being installed separately.
Copy/Paste command below and enjoy ☕
bash <(curl -s https://raw.githubusercontent.com/websnack-dk/laravel/main/setup.sh)
-
laravel/breeze
-
spatie/laravel-ray
-
spatie/laravel-sitemap
-
spatie/laravel-cookie-consent
-
intervention/image
-
barryvdh/laravel-ide-helper
Add manually to composer.json
script area.
# Script ...
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
]
# ...