From f053c4936098010be3dbfb124ce0375ddb574596 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 1 Jan 2024 16:27:07 +0100 Subject: [PATCH] Re-add Laravel installer docs (#9232) --- installation.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/installation.md b/installation.md index 680821e47d1..245cffd5996 100644 --- a/installation.md +++ b/installation.md @@ -61,6 +61,14 @@ After you have installed PHP and Composer, you may create a new Laravel project composer create-project laravel/laravel example-app ``` +Or, you may create new Laravel projects by globally installing [the Laravel installer](https://github.com/laravel/installer) via Composer: + +```nothing +composer global require laravel/installer + +laravel new example-app +``` + Once the project has been created, start Laravel's local development server using Laravel Artisan's `serve` command: ```nothing