1.

What are the steps to install Laravel with composer?

Answer»

Laravel installation steps:-

  • DOWNLOAD composer from https://getcomposer.org/download (if you don’t have a composer on your system)
  • OPEN cmd
  • Goto your htdocs folder.
  • C:\xampp\htdocs>composer create-project laravel/laravel projectname
    OR
    If you install some particular version, then you can use
    composer create-project laravel/laravel project NAME "5.6"

If you did not MENTION any particular version, then it will install with the latest version.



Discussion

No Comment Found