From 73c7ef66139f4e450fb37a3742b3d9e0dfece261 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Mon, 11 Dec 2017 11:12:14 +0000 Subject: [PATCH] Add the path for php binaries to the PATH --- zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zshrc b/zshrc index 037cc68..d6ef23c 100644 --- a/zshrc +++ b/zshrc @@ -175,6 +175,9 @@ export PATH="$PATH:$HOME/.gem/ruby/2.4.0/bin" # PostgreSQL binaries test -d /usr/local/pgsql && export PATH="$PATH:/usr/local/pgsql/bin" +# PHP binaries +test -d $HOME/.php/bin && export PATH="$PATH:$HOME/.php/bin" + # Set the DEFAULT_USER variable to me (jonny) export DEFAULT_USER="jonny"