Skip to content

Instantly share code, notes, and snippets.

@denalena
Created September 9, 2019 12:36
Show Gist options
  • Save denalena/6caf03f7e9c5d978381d2fc2b84f6979 to your computer and use it in GitHub Desktop.
Save denalena/6caf03f7e9c5d978381d2fc2b84f6979 to your computer and use it in GitHub Desktop.
#!/bin/sh
# How do I install Composer programmatically?
# https://getcomposer.org/doc/faqs/how-to-install-composer-programmatically.md
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 --quiet
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