Home  >  Article  >  Development Tools  >  How to install composer on Mac

How to install composer on Mac

藏色散人
藏色散人forward
2021-01-21 11:02:033558browse

The following column will introduce you to the Mac installation of composer from the composer tutorial column. I hope it will be helpful to friends who need it!

Step One: Download the installation script

php -r "copy('https://install.phpcomposer.com/installer', 'composer-setup.php');"

How to install composer on Mac

##Step Two: Perform the installation process
php composer-setup.php

How to install composer on Mac

##Step 3: Delete the installation script (not necessary)
php -r "unlink('composer-setup.php');"

How to install composer on Mac

Step 4: Install composer globally
sudo mv composer.phar /usr/local/bin/composer

How to install composer on Mac

Note: The command to keep Composer as the latest version:
composer selfupdate

The above is the detailed content of How to install composer on Mac. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:learnku.com. If there is any infringement, please contact admin@php.cn delete