Skip to content

Instantly share code, notes, and snippets.

@slow-is-fast
Last active October 23, 2017 09:43
Show Gist options
  • Select an option

  • Save slow-is-fast/e8336ed3ed04c6294693d7518e0137b0 to your computer and use it in GitHub Desktop.

Select an option

Save slow-is-fast/e8336ed3ed04c6294693d7518e0137b0 to your computer and use it in GitHub Desktop.
install_php_composer.md
```shell
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php --install-dir=/usr/local/bin --filename=composer
php -r "unlink('composer-setup.php');"
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment