Last active
March 30, 2021 16:47
-
-
Save pwenzel/5959800 to your computer and use it in GitHub Desktop.
Global composer install for MAMP Users on OSX
This file contains hidden or 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
# 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; |
This file contains hidden or 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
// my node code.js |
This file contains hidden or 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
// my pyhp coded |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment