Skip to content

Instantly share code, notes, and snippets.

@roggeo
Last active November 7, 2020 14:57
Show Gist options
  • Save roggeo/d6216e772d234773884f22e9fbf3d321 to your computer and use it in GitHub Desktop.
Save roggeo/d6216e772d234773884f22e9fbf3d321 to your computer and use it in GitHub Desktop.
#TO INSTALL COMPOSER ON WINDOWS FOR USING ON COMMAND-LINE
#To create composer folder
mkdir c:\\composer
cd c:\\composer
#Composer dowload https://getcomposer.org/download
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
#To create file composer.bat
@ECHO OFF
SET BIN_TARGET=%~dp0/composer.phar
php "%BIN_TARGET%" %*
#Export path (open command line how administrator)
SETX PATH "%PATH%;C:\composer;" -m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment