Skip to content

Instantly share code, notes, and snippets.

@5a494d
Created November 24, 2019 05:51
Show Gist options
  • Save 5a494d/cfe1569905007b4467e351b04939bf2a to your computer and use it in GitHub Desktop.
Save 5a494d/cfe1569905007b4467e351b04939bf2a to your computer and use it in GitHub Desktop.
Install composer globally
#!/bin/sh
EXPECTED_SIGNATURE="$(wget -q -O - https://composer.github.io/installer.sig)"
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
ACTUAL_SIGNATURE="$(php -r "echo hash_file('sha384', 'composer-setup.php');")"
if [ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ]
then
>&2 echo 'ERROR: Invalid installer signature'
rm composer-setup.php
exit 1
fi
php composer-setup.php --install-dir=/usr/local/bin --filename=composer
RESULT=$?
rm composer-setup.php
exit $RESULT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment