Laravel | Installation and Configuration Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Laravel is a PHP framework that makes building complex web applications a cakewalk. In this guide you are going to learn how to Install and Configure Laravel and get your first Laravel project running in your computer. Prerequisites: Basic knowledge of PHPPHP InstallationBasic knowledge of Terminal/Command Prompt Steps to install Laravel: Laravel actually uses a dependency manager tool called Composer to install all required libraries to run Laravel. So before we move forward make sure that composer is installed in your system. You can easily install Composer from here. It is well documented and after installation run the below given command in your terminal/command prompt: composer If it gives an output like given below then it means the installation was successful and we can go to the next step. Next step is to create a folder where we are going to create our new Laravel Project. After moving to that folder just run this composer command to create a new Laravel Project. composer create-project --prefer-dist laravel/laravel my-first-laravel-project Here, create-project is a composer command which is just downloading the package and installing all the dependencies further needed by this package and then we have this --prefer-dist which means just prefer the stable version releases if possible, next we mention name of package which is laravel/laravel and my-first-laravel-project is actually the name of project folder and you can replace it with any name that you want. This will start the installation of all dependencies as given in the image below. If everything went well then end of this script will look like this: Now you have a new folder called my-first-laravel-project and move to that folder. You will notice that inside this folder a lot of files and folders are already present, this is actually the Laravel framework itself. In this folder, run the command given below to start the in-build PHP server. php artisan serve This will give an output like given below: Note: The link really depends on your system, it can be http://localhost:8000 also. Copy this link and open it in your browser to see your Laravel app (In my case it is http://127.0.0.1:8000). It will look like this: Comment More infoAdvertise with us Next Article Installation and Configuration Symfony Framework G gurrrung Follow Improve Article Tags : Web Technologies How To Installation Guide Laravel how-to-install +1 More Similar Reads Slim Framework | Installation and Configuration Slim is a lightweight, easy to use and fast PHP framework used to develop the powerful website quickly with ease. Like other PHP frameworks, slim also supports routers, middlewares, bodyparser, page templates, encrypted cookies and much more. Prerequisites: PHP installation on windowsEnvironment Set 2 min read Slim Framework | Installation and Configuration Slim is a lightweight, easy to use and fast PHP framework used to develop the powerful website quickly with ease. Like other PHP frameworks, slim also supports routers, middlewares, bodyparser, page templates, encrypted cookies and much more. Prerequisites: PHP installation on windowsEnvironment Set 2 min read Slim Framework | Installation and Configuration Slim is a lightweight, easy to use and fast PHP framework used to develop the powerful website quickly with ease. Like other PHP frameworks, slim also supports routers, middlewares, bodyparser, page templates, encrypted cookies and much more. Prerequisites: PHP installation on windowsEnvironment Set 2 min read Installation and Configuration Symfony Framework Symfony is an open-source PHP web application framework with MVC architecture. It is a set of reusable PHP components/libraries. It is basically designed for developers who need an elegant and simple toolkit to create web applications and is the most popular application frameworks among the open-sou 2 min read Installation and Configuration Symfony Framework Symfony is an open-source PHP web application framework with MVC architecture. It is a set of reusable PHP components/libraries. It is basically designed for developers who need an elegant and simple toolkit to create web applications and is the most popular application frameworks among the open-sou 2 min read Installation and Configuration Symfony Framework Symfony is an open-source PHP web application framework with MVC architecture. It is a set of reusable PHP components/libraries. It is basically designed for developers who need an elegant and simple toolkit to create web applications and is the most popular application frameworks among the open-sou 2 min read Like