Created
December 5, 2018 14:56
-
-
Save SreejithEzhakkad/3c21aa7b6de008eb1fda24d5c1831376 to your computer and use it in GitHub Desktop.
Composer installer file
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 | |
COMPOSER_VERSION=${COMPOSER_VERSION:-1.4.2} | |
curl -s -f -L -o /tmp/installer.php https://raw.githubusercontent.com/composer/getcomposer.org/da290238de6d63faace0343efbdd5aa9354332c5/web/installer \ | |
&& php -r " \ | |
\$signature = '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410'; \ | |
\$hash = hash('SHA384', file_get_contents('/tmp/installer.php')); \ | |
if (!hash_equals(\$signature, \$hash)) { \ | |
unlink('/tmp/installer.php'); \ | |
echo 'Integrity check failed, installer is either corrupt or worse.' . PHP_EOL; \ | |
exit(1); \ | |
}" \ | |
&& php /tmp/installer.php --no-ansi --install-dir=/usr/bin --filename=composer --version=${COMPOSER_VERSION} \ | |
&& rm /tmp/installer.php \ | |
&& composer --ansi --version --no-interaction |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment