How to install composer?

藏色散人
Release: 2019-08-03 15:33:15
Original
9657 people have browsed it

How to install composer?

How to install composer?

Composer installation method

Wondows platform

On the Wondows platform, we only need to download Composer-Setup.exe and install it step by step.

It should be noted that you need to enable openssl configuration. We open php.ini in the php directory and remove the semicolon in front of extension=php_openssl.dll.

After the installation is successful, we can enter the composer --version command through the command window (cmd) to check whether the installation is successful:

Next we can change Packagist to the domestic mirror:

composer config -g repo.packagist composer https://packagist.phpcomposer.com
Copy after login

Related recommendations: [composer tutorial]

Linux platform

The Linux platform can be installed using the following command:

# php -r "copy('https://install.phpcomposer.com/installer', 'composer-setup.php');"
# php composer-setup.php
All settings correct for using Composer
Downloading...
Composer (version 1.6.5) successfully installed to: /root/composer.phar
Use it: php composer.phar
Copy after login

Move composer.phar so that composer can make global calls:

# mv composer.phar /usr/local/bin/composer
Copy after login

Switch to domestic mirror:

# composer config -g repo.packagist composer https://packagist.phpcomposer.com
Copy after login

Update composer:

# composer selfupdate
Copy after login

Mac OS system

Mac OS system can use the following command to install:

$ curl -sS https://getcomposer.org/installer | php
$ sudo mv composer.phar /usr/local/bin/composer
$ composer --version
Composer version 1.7.2 2018-08-16 16:57:12
Copy after login

Switch to domestic mirror:

$ composer config -g repo.packagist composer https://packagist.phpcomposer.com
Copy after login

Update composer:

$ composer selfupdate
Copy after login

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template