Skip to content

Instantly share code, notes, and snippets.

@pwenzel
Last active March 30, 2021 16:47
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pwenzel/5959800 to your computer and use it in GitHub Desktop.
Save pwenzel/5959800 to your computer and use it in GitHub Desktop.
Global composer install for MAMP Users on OSX
# Global composer install for MAMP Users on OSX
# http://getcomposer.org/doc/00-intro.md#globally
# For PHP 5.4 Use:
# alias php=/Applications/MAMP/bin/php/php5.4.4/bin/php;
alias php=/Applications/MAMP/bin/php/php5.3.6/bin/php;
curl -sS https://getcomposer.org/installer | php;
mv composer.phar /usr/local/bin/composer;
composer help;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment