We are going to install Laravel5.0 on wamp server in windows.
Question: What are system requirement for laravel5.0?
Following are system requirements:
- PHP >= 5.4, PHP < 7
- Mcrypt PHP Extension
- OpenSSL PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
Question: How to install Laravel5.0?
- You must have composer. If not install composer.
- Create a folder where you want to install the laravel.
Supppose
E:\wamp\www\laravel
- Login to Command Prompt and go the "E:\wamp\www\laravel" using cd command.
- Execute following command
composer create-project laravel/laravel laravel "5.0.*" --prefer-dist
- Set the document_path to "E:\wamp\www\laravel\public" OR You can use virtual host for this. In any ways file must point to public folder first.