0% found this document useful (0 votes)
11 views5 pages

03 Instalation

The document outlines the installation process for Laravel, emphasizing the need for Composer to manage dependencies. It provides step-by-step instructions, including downloading Composer, creating a project directory, and executing commands to install Laravel and start the service. Successful installation is confirmed by accessing a specific URL in the browser after running the necessary commands.

Uploaded by

sigitmincode
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views5 pages

03 Instalation

The document outlines the installation process for Laravel, emphasizing the need for Composer to manage dependencies. It provides step-by-step instructions, including downloading Composer, creating a project directory, and executing commands to install Laravel and start the service. Successful installation is confirmed by accessing a specific URL in the browser after running the necessary commands.

Uploaded by

sigitmincode
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Laravel - Installation https://www.tutorialspoint.com/laravel/laravel_installation.

htm

Laravel - Installation

For managing dependencies, Laravel uses composer. Make sure you have a Composer
installed on your system before you install Laravel. In this chapter, you will see the installation
process of Laravel.

You will have to follow the steps given below for installing Laravel onto your system −

Step 1 − Visit the following URL and download composer to install it on your system.

https://getcomposer.org/download/

Step 2 − After the Composer is installed, check the installation by typing the Composer
command in the command prompt as shown in the following screenshot.

Step 3 − Create a new directory anywhere in your system for your new Laravel project. After
that, move to path where you have created the new directory and type the following command
there to install Laravel.

composer create-project laravel/laravel –-prefer-dist

Now, we will focus on installation of version 5.7. In Laravel version 5.7, you can install the
complete framework by typing the following command −

1 of 5 14-04-2022, 3:09 PM
Laravel - Installation https://www.tutorialspoint.com/laravel/laravel_installation.htm

composer create-project laravel/laravel test dev-develop

The output of the command is as shown below −

The Laravel framework can be directly installed with develop branch which includes the latest
framework.

Step 4 − The above command will install Laravel in the current directory. Start the Laravel
service by executing the following command.

php artisan serve

Step 5 − After executing the above command, you will see a screen as shown below −

2 of 5 14-04-2022, 3:09 PM
Laravel - Installation https://www.tutorialspoint.com/laravel/laravel_installation.htm

Step 6 − Copy the URL underlined in gray in the above screenshot and open that URL in the
browser. If you see the following screen, it implies Laravel has been installed successfully.

Useful Video Courses

Upload And Image Processing With Laravel And DigitalOcean

13 Lectures 3 hours

Sebastian Sulinski

More Detail

Laravel RESTful APIs - Admin App, Docker, Open API(Swagger)

3 of 5 14-04-2022, 3:09 PM
Laravel - Installation https://www.tutorialspoint.com/laravel/laravel_installation.htm

35 Lectures 3.5 hours

Antonio Papa

More Detail

Mailing List Filter And Import With Laravel

7 Lectures 1.5 hours

Sebastian Sulinski

More Detail

Laravel 5

42 Lectures 1 hours

Skillbakerystudios

More Detail

Finest Laravel Course - Learn From 0 To Ninja With ReactJS

165 Lectures 13 hours

Paul Carlo Tordecilla

4 of 5 14-04-2022, 3:09 PM
Laravel - Installation https://www.tutorialspoint.com/laravel/laravel_installation.htm

More Detail

Master Laravel With Vue

116 Lectures 13 hours

Hafizullah Masoudi

More Detail

5 of 5 14-04-2022, 3:09 PM

You might also like