Created
February 8, 2016 09:29
-
-
Save renebakx/fff95fc315b8f9013052 to your computer and use it in GitHub Desktop.
PHP 5 and 7 with MAMP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PHP7=1; // on opening your terminal | |
// Goes in your ~/.bash_profile | |
if [ -z "$PHP7" ]; then | |
export DRUSH_PHP='/Applications/MAMP/bin/php/php7.0.0/bin/php' | |
export PATH=/Applications/MAMP/Library/bin/:/Applications/MAMP/bin/php/php7.0.0/bin/:~/bin:$JAVA_HOME/bin:$PATH | |
else | |
export DRUSH_PHP='/Applications/MAMP/bin/php/php5.5.26/bin/php' | |
export PATH=/Applications/MAMP/Library/bin/:/Applications/MAMP/bin/php/php5.5.26/bin/:~/bin:$JAVA_HOME/bin:$PATH | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment