Answers for "install php artisan"

PHP
16

install laravel

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

insall laravel

composer global require laravel/installer 
laravel new blog
Posted by: Guest on April-21-2020
0

start someones laravel project

1. composer update --no-scripts  or composer install
 2. php artisan key:generate 
 3. rename example.env to .env
 4. Change database credentials, set debug mode! Change app url
 4. php artisan migrate(make sure u have the database running in the server)
 5. php artisan config:clear
 6. you are good to go!
Posted by: Guest on December-10-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

Code answers related to "install php artisan"

Browse Popular Code Answers by Language