Answers for "laravel install windows"

PHP
16

install laravel

composer create-project --prefer-dist laravel/laravel blog "6.*"
Posted by: Guest on May-08-2020
2

laravel install

composer create-project laravel/laravel <example-app>
Posted by: Guest on March-17-2021
0

laravel install

composer global require laravel/installer

laravel new example-app

cd example-app

php artisan serve
Posted by: Guest on April-26-2021
0

laravel download

composer global require "laravel/installer=~1.1"
Posted by: Guest on July-13-2020
3

how to install new project in laravel

You can create project by 2 ways:

First is installing it without defining version:
composer create-project laravel/laravel yourProjectName

Secondly you can install by defining version:
composer create-project laravel/laravel="VersionOfYourChoice" yourProjectName
Posted by: Guest on December-22-2020
-2

laravel install

composer create-project --prefer-dist laravel/laravel blog "5.6.*"
Posted by: Guest on December-18-2020

Code answers related to "laravel install windows"

Browse Popular Code Answers by Language