Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to install laravel on mac

# install laravel on mac
$ brew install composer
$ composer global require "laravel/installer" 
$ sudo nano  ~/.bash_profile 
#add following line in .bash_profile
export PATH="~/.composer/vendor/bin:$PATH"
$ source ~/.bash_profile  
$ laravel new firstProject
$ php artisan serv  
Comment

install laravel globally mac

// Adding Laravel to global Path in mac
export PATH="$PATH:$HOME/.composer/vendor/bin"
Comment

PREVIOUS NEXT
Code Example
Shell :: find file in linux with regex 
Shell :: curl skip ssl 
Shell :: start kafka cmd 
Shell :: kubectl get namespace 
Shell :: flutter ci cd gitlab 
Shell :: how to get only a list of size of files bash 
Shell :: how to copy a file to a remote server using the command line 
Shell :: create a branch from main 
Shell :: bash: fork: Cannot allocate memory 
Shell :: how to stop tomcat server in macos 
Shell :: sourcetree change commit message 
Shell :: dpkg install deb with dependencies 
Shell :: git github account change 
Shell :: tasksel: apt-get failed (100) 
Shell :: putty zip command 
Shell :: lines of code 
Shell :: ubuntu install yarn 
Shell :: push local branch to remote 
Shell :: cypress installation 
Shell :: active developer path does not exist 
Shell :: vendor/autoload.php download 
Shell :: shell set environment variable 
Shell :: bash get kernel version 
Shell :: enable rdp powershell 
Shell :: how to setup blackeye 
Shell :: zsh: command not found: aws 
Shell :: folder size in linux 
Shell :: virtualbox debian 10 guest additions 
Shell :: restart docker 
Shell :: are if statements their own scope python 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =