Home  >  Article  >  Development Tools  >  Two ways to install composer under centos

Two ways to install composer under centos

藏色散人
藏色散人forward
2020-07-01 11:56:224557browse

The following tutorial column of composer will introduce to you two installation methods of composer under centos. I hope it will be helpful to friends in need!

Two ways to install composer under centos

1,

Download the 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 mirrors

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 Two ways to install composer under centos. For more information, please follow other related articles on the PHP Chinese website!

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