Friday, October 21, 2016

Installing LARAVEL 5.3 in windows

Server Requirements
  • PHP >= 5.6.4
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension
Installing via Composer

download and install https://getcomposer.org/download/

then go to your command line /cmd and type

composer global require "laravel/installer"

Go to your htdocs and create a project by typing

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

type this to run the local server of your laravel application

php artisan serve

now go to http://localhost:8000

Done! You may now proceed to configure your app.

No comments:

Post a Comment