Skip to content

Instantly share code, notes, and snippets.

@wapcrazut
Last active July 5, 2019 08:39
Show Gist options
  • Save wapcrazut/96fdb8c59226934d72040d801a12ef2d to your computer and use it in GitHub Desktop.
Save wapcrazut/96fdb8c59226934d72040d801a12ef2d to your computer and use it in GitHub Desktop.
Fix composer issues by performing a fresh install. For Ubuntu distros.
cd ~
sudo apt-get remove composer -y
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment