Skip to content

Instantly share code, notes, and snippets.

@jiskanulo
Created November 13, 2017 15:54
Show Gist options
  • Save jiskanulo/4fc22c6380f5314e11eab7b84f5b01c4 to your computer and use it in GitHub Desktop.
Save jiskanulo/4fc22c6380f5314e11eab7b84f5b01c4 to your computer and use it in GitHub Desktop.
install composer
#!/bin/bash
SCRIPT_DIR=$(cd $(dirname $0); pwd)
if [ -e "${SCRIPT_DIR}/composer" ]
then
echo "Info: Already Installed composer"
exit 0
fi
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 $SCRIPT_DIR --filename composer --quiet
RESULT=$?
rm composer-setup.php
if [ "${RESULT}" != "0" ]
then
>&2 echo 'ERROR: Install failed'
exit 1
fi
exit $RESULT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment