Created
March 14, 2020 11:11
-
-
Save csinghdev/b9431f7d6a8fd6a22ab611df15abca79 to your computer and use it in GitHub Desktop.
Installing composer on Ubuntu
This file contains 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
#!/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