Skip to content

Instantly share code, notes, and snippets.

@csinghdev
Created March 14, 2020 11:11
Show Gist options
  • Save csinghdev/b9431f7d6a8fd6a22ab611df15abca79 to your computer and use it in GitHub Desktop.
Save csinghdev/b9431f7d6a8fd6a22ab611df15abca79 to your computer and use it in GitHub Desktop.
Installing composer on Ubuntu
#!/bin/bash
# Execute the commands below to install composer on ubuntu
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
chmod +x /usr/local/bin/composer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment