Answers for "how to install laravel in php directory"

PHP
0

how to install laravel

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

add laravel installer to path

# For WSL, you will find the global composer location in ~/.config/composer
# Instead of the usual ~/.composer/
# To add a normal composer install to your WSL path do the following
export PATH="$PATH:~/.config/composer/vendor/bin"
# Reload bash
source ~/.bashrc
# Use composer package (ex. Laravel)
Posted by: Guest on October-25-2021

Browse Popular Code Answers by Language