laravel
installer CLI for creating new Laravel PHP framework applications
TLDR
Create new Laravel project
$ laravel new [project-name]
Create project with specific starter kit$ laravel new [project-name] --jet
Create project with Breeze$ laravel new [project-name] --breeze
Create without Git initialization$ laravel new [project-name] --no-git
SYNOPSIS
laravel command [options]
DESCRIPTION
laravel is the Laravel installer CLI for creating new Laravel PHP framework applications. Provides scaffolding options for starter kits like Jetstream and Breeze. Alternative to using Composer create-project.
PARAMETERS
new name
Create a new Laravel application.--jet
Install with Laravel Jetstream.--breeze
Install with Laravel Breeze.--pest
Use Pest for testing.--no-git
Skip Git initialization.--force
Overwrite existing directory.
SEE ALSO
composer(1), php-artisan(1)
