0

I'm having issues installing Laravel Valet on macOS Heigh Sierra I already did the following steps.

  1. /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" - this worked fine

  2. brew update - this worked fine

  3. brew install homebrew/php/php71 - this worked fine

  4. composer global require laravel/valet - this gives me command not found.

I know I'm supposed to add it to the path, but this command composer global require laravel/valet should work before I add the path

Karl Hill
  • 12,937
  • 5
  • 58
  • 95
Yosef
  • 442
  • 1
  • 7
  • 26

1 Answers1

0

Shouldn't you install composer somewhere before executing it? Try executing brew install composer after installing PHP

Nico Haase
  • 11,420
  • 35
  • 43
  • 69