Created
April 19, 2016 11:59
-
-
Save ezimuel/dcd840b5d459c5d7392f9dea3edb4f81 to your computer and use it in GitHub Desktop.
Verify and install composer from bash command line
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 | |
# Verify and install composer from https://getcomposer.org/installer | |
me=`basename "$0"` | |
if [[ $# -eq 0 ]] ; then | |
echo "Usage: $me <hash>" | |
echo 'where <hash> is the hash value of the installer to verify' | |
exit 1 | |
fi | |
hash=$1 | |
php -r "readfile('https://getcomposer.org/installer');" > composer-setup.php | |
php -r "if (hash('SHA384', file_get_contents('composer-setup.php')) === '$hash') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" | |
if [ -f composer-setup.php ]; then | |
php composer-setup.php | |
php -r "unlink('composer-setup.php');" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to pass the hash value from the command line to verify the composer installer. The hash code can be found here.