Friday, March 1, 2019

How to install Laravel 5 with Xampp (Windows)

Requirements
  1. PHP >= 5.5.9
  2. OpenSSL PHP Extension
  3. PDO PHP Extension
  4. Mbstring PHP Extension
  5. Tokenizer PHP Extension
Install Xampp
First of all, we need Xampp, so we can download it from the official page: Download Xampp
Install Composer
After you've downloaded and installed Xampp, we need to install Composer.
Composer is a PHP package manager that is integrated with Laravel Framework. In Windows we can install it easy going to the official page and download the installer. Composer Download page

Install Laravel Framework
We are prepared to install and configure a Laravel Framework. First of all, we have to navigate to htdocs folder to install it and run this following command:
composer create-project laravel/laravel laravel "5.1.*"
When it finishes, it will create following directory schema:

Now browse your laravel project into browser:


No comments:

Post a Comment