Downloading And Installing Laravel

We need 4 things in this laravel installation.

  1. Wamp Server / Xamp Server / Mamp Server
  2. Composer (Dependency Manager For PHP)
  3. Text Editor: Visual Studio Code, Brackets, Sublime Text etc.
  4. Git Bash: It also provides command line interface to include third party packages.

Composer (Dependency Manager For PHP)

  • Composer is a tool for dependency management in PHP.
  • Composer provides you CLI to run commands.
  • It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.
  • It helps us installing/updating various requirements/components for our app such as Laravel framework.

Download Wamp Server From Below Link

https://www.wampserver.com/en/

Download Xampp Server From Below Link

https://www.apachefriends.org/download.html

Download Composer From Below Link

https://getcomposer.org/

Download Visual Studio Code From Below Link

https://code.visualstudio.com/

Download Git Bash From Below Link

https://git-scm.com/downloads

Note: For Step By Step Installation see above video.

After Installation – Install Laravel, By Using Composer – Enter This Command In Visual Studio Code Terminal, Command’s given below:

composer global require laravel/installer

Command For Creating New Project

laravel new project_name

Change PowerShell to Bash

  • Step 1: Go to File tab in vs code then go to preferences and then go to settings.
  • Step 2: there is a list in left hand side, and from that list select Features.
  • Step 3: In features list, select Terimnal then scroll downward and then click to Edit in settings.json.
  • Step 4: Remove all data of settings.json then in the curly brackets pass the path given below.
  • “terminal.integrated.shell.windows”: “C:\Program Files\Git\bin\bash.exe”

Click Below Link to Download Notes Of This Blog

https://www.mediafire.com/file/5zldad2qym8xbj5/DOWNLOADING+AND+INSTALLING+LARAVEL.pptx/file

2 Responses

  1. Sir i watch your laravel and other tutorials and i learn a lot. Sir when will you upload Laravel Authentication Tutorial?

Leave a Reply

Your email address will not be published. Required fields are marked *