Home  >  Article  >  Development Tools  >  Can composer be installed independently?

Can composer be installed independently?

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-15 09:55:571324browse

Can composer be installed independently?

Composer Installation

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.

Can composer be installed independently?

Related recommendations: "composer usage tutorial"

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

Can composer be installed independently?

Next we can change Packagist to the domestic image:

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

Linux platform

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

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

# mv composer.phar /usr/local/bin/composer

Switch to domestic mirror:

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

Update composer:

# composer selfupdate

Mac OS system

Mac OS system can be installed using the following command:

$ 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

Switch to domestic mirror:

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

Update composer:

$ composer selfupdate

The above is the detailed content of Can composer be installed independently?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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