Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 365 Bytes

composerinstall.md

File metadata and controls

25 lines (17 loc) · 365 Bytes

How to install composer in Ubuntu Back

  • To download composer:
curl -sS https://getcomposer.org/installer | php
  • Install composer:
/usr/bin/php composer.phar --version
  • Set global variable:
sudo mv composer.phar /usr/local/bin/composer
  • Check whether install successfully:
composer --version