Skip to content

Instantly share code, notes, and snippets.

@tuantranf
Created December 7, 2018 08:06
Show Gist options
  • Save tuantranf/9762fb2bc7cb9c70902ff25ce9387707 to your computer and use it in GitHub Desktop.
Save tuantranf/9762fb2bc7cb9c70902ff25ce9387707 to your computer and use it in GitHub Desktop.
Composer installation shell script for Mac OS
#!/usr/bin/env bash
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
mv composer.phar /usr/local/bin/composer
echo "Composer installation finished."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment