Menü schliessen
Created: May 6th 2021
Last updated: May 21st 2021
Categories: IT Development,  Laravel
Author: Marcus Fleuti

Laravel: create new Laravel application via Composer

Donation Section: Background
Monero Badge: QR-Code
Monero Badge: Logo Icon Donate with Monero Badge: Logo Text
82uymVXLkvVbB4c4JpTd1tYm1yj1cKPKR2wqmw3XF8YXKTmY7JrTriP4pVwp2EJYBnCFdXhLq4zfFA6ic7VAWCFX5wfQbCC

Requirements

You need to make sure that PHP and Composer is installed on your local machine if you want to install your Laravel application in this way. There are other ways to create a new Laravel application. I am going to show the creation via Composer.

Installation with Composer

Run the commands below to create your plain Laravel application. With the Artisan serve command you are going to run the application from your localhost.

composer create-project laravel/laravel test-app
cd test-app
php artisan serve