Skip to content

Script to setup a base laravel project with pre-installed basic composer packages using DDEV-local

Notifications You must be signed in to change notification settings

websnack-dk/laravel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maintained - Yes

Base laravel setup

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.

Requirements


Usage

Copy/Paste command below and enjoy ☕

bash <(curl -s https://raw.githubusercontent.com/websnack-dk/laravel/main/setup.sh)

Base composer packages

  • 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"
    ]
    
# ... 

Maintainer