Laravel Installer Update

- Andrés Cruz

En español
Laravel Installer Update

Laravel Installer is a command line tool that allows you to easily install Laravel on your computer; Of course, for this, first remember to have your development environment installed, such as Laragon or Sail, which you will also find articles in this blog. When you run the command:

composer global require "laravel/installer" 

The latest stable version of the Laravel Installer is downloaded and installed on your system. You can then create a new Laravel project using the command:

laravel new <nombre_del_proyecto> 

The necessary files from the Internet that make up our Laravel project will automatically begin to be downloaded and with this, our Laravel project will be automatically created without doing anything else.

Keeping the Laravel installer up to date is important since many times the latest versions of the framework require having an updated version of it.

Laravel Installer is a command line tool that allows you to install Laravel on a PC previously configured using Laragon, Sail, etc; When you run the command:

composer global require "laravel/installer"

The latest stable version of the Laravel Installer is downloaded and installed on your system. You can then create a new Laravel project using:

laravel new <nombre_del_proyecto> 

And wait for the process to finish, in which the necessary files will begin to be downloaded from the Internet to create a project in Laravel and with this, create our project in Laravel ready to use. Like everything, sometimes it is necessary to update its version, let's see a simple mechanism to do it.

Installing the new Laravel installer using Composer is easy, but what if you already have it installed? The latest Laravel installer will be essential for your workflow, so make sure you get the latest version. If you're scratching your head, we've got you covered!

Laravel Installer Update

If you already have globally required laravel/installer on your local machine, you can update to the latest version of laravel/installer by uninstalling and reinstalling it:

composer global remove laravel/installer
composer global require laravel/installer
Andrés Cruz

Develop with Laravel, Django, Flask, CodeIgniter, HTML5, CSS3, MySQL, JavaScript, Vue, Android, iOS, Flutter

Andrés Cruz In Udemy

I agree to receive announcements of interest about this Blog.