Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save singhmohancs/75c98ab8152cebebe9f7ca6c0d29f997 to your computer and use it in GitHub Desktop.
Save singhmohancs/75c98ab8152cebebe9f7ca6c0d29f997 to your computer and use it in GitHub Desktop.
MacOS XAMPP PHP Installation

##Change default Mac OS X PHP to XAMPP's PHP Installation and Install Composer

Find out what version of PHP is running

which php

This will output the path to the default PHP install which comes preinstalled by Mac OS X, by default

/usr/bin/php

Now, we just need to swap this over to the PHP that is installed with XAMPP, which is located at /Applications/XAMPP/bin

1.vim ~/.bash_profile

  1. Type i and then paste the following at the top of the file:

     export PATH=/Applications/XAMPP/bin:$PATH
    
  2. Hit ESC, Type :wq, and hit Enter

  3. In Terminal, run source ~/.bash_profile

  4. In Terminal, type in which php again and look for the updated string. If everything was successful, It should output the new path to XAMPP PHP install.

###Install Composer

Now you can fire the command to install the composer:

curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin

After the download & installation is done, You can add this alias to your .bash_profile or .profile file to get composer to work globally instead of php /usr/bin/composer.phar command.

alias composer="php /usr/bin/composer.phar"

You can verify your installation worked by typing the following command within the Terminal:

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