Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dharma017/aac4d7c8b86927ec0bd1d94f6f0bddc4 to your computer and use it in GitHub Desktop.
Save dharma017/aac4d7c8b86927ec0bd1d94f6f0bddc4 to your computer and use it in GitHub Desktop.
Use MAMP php instead of native MAC php

Bash Shell

Use MAMP version of PHP

PHP_VERSION=ls /Applications/MAMP/bin/php/ | sort -n | tail -1 export PATH=/Applications/MAMP/bin/php/${PHP_VERSION}/bin:$PATH

Fish Shell

set PHP_VERSION (ls /Applications/MAMP/bin/php/ | sort -n | tail -1) set -x PATH /Applications/MAMP/bin/php/$PHP_VERSION/bin $PATH set -x PATH /Applications/MAMP/Library/bin/ $PATH

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment