Home>Article>Development Tools> 2 installation methods of composer under centos
The tutorial column ofcomposerbelow will introduce you to the two methods of composer under centos. I hope it will be helpful to friends in need!
centosTwo installation methods under composer
1. Download composer .phar file
curl -sS https://getcomposer.org/installer | php
Move composer.phar to the environment variable and rename it composer
mv composer.phar /usr/local/bin/composer
Use domestic mirror
composer config -g repo.packagist composer https://packagist.phpcomposer.com
2,
1.wget https://dl.laravel-china.org/composer.phar -O /usr/local/bin/composer chmod a+x /usr/local/bin/composer
The above is the detailed content of 2 installation methods of composer under centos. For more information, please follow other related articles on the PHP Chinese website!