From 169c10bc9b0afa2b28e733ba532dcc2ac0e6a710 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Tue, 22 Mar 2016 10:07:07 -0500 Subject: [PATCH] Use PHP installed via Brew. --- .bash_profile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.bash_profile b/.bash_profile index 4d764ba..46c1bce 100644 --- a/.bash_profile +++ b/.bash_profile @@ -66,6 +66,9 @@ if [ -f `brew --prefix`/etc/bash_completion ]; then . `brew --prefix`/etc/bash_completion fi +# Use brew-installed PHP binaries. +export PATH="$(brew --prefix homebrew/php/php56)/bin:$PATH" + # Vagrant configuration. # export VAGRANT_DEFAULT_PROVIDER='virtualbox'