Laravel Lambo – A package to quickly scaffold out a new project

Packages

August 23rd, 2016

Laravel Lambo – A package to quickly scaffold out a new project

Laravel Lambo is a new package by Tighten.co that allows you to quickly scaffold out a new Laravel application from your terminal.

It works similar to laravel new but supercharged. For example, you start a new project like this:

lambo myproject

Then behind the scenes it runs the following commands:

laravel new $PROJECTNAME
cd $PROJECTNAME
git init
git commit -am 'Initial Commit'

Next, it modifies your local .env to add your database credentials and replaces APP_URL with the project name, then opens up the browser to your URL.

Lambo is Mac only and requires both the Laravel command line installer and Laravel Valet.

Check out the GitHub repo for complete instructions and installation.

Filed in:

Eric L. Barnes

Eric is the creator of Laravel News and has been covering Laravel since 2012.