Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save payamomrani/ccc7efb79f8b25be53b9c0386d97797b to your computer and use it in GitHub Desktop.
Save payamomrani/ccc7efb79f8b25be53b9c0386d97797b to your computer and use it in GitHub Desktop.
Install composer xampp ubuntu 18

Install composer like so:

sudo curl -s https://getcomposer.org/installer | /opt/lampp/bin/php

After installation, you should then symlink it by running command:

sudo ln -s /opt/lampp/bin/php /usr/local/bin/php

Then run the command below to allow the 'composer' command to be run globally (this will be run from within the folder where you've just installed composer in which a composer.phar file has just been created):

sudo mv composer.phar /usr/local/bin/composer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment