How to install composer

藏色散人
Release: 2019-08-05 09:30:30
Original
4531 people have browsed it

How to install composer

How to install composer?

Domestic friends may encounter many problems when installing composer. When I first installed composer, I also took a lot of detours. Now I recommend a quick way to install composer. Open the command line and execute the following command:

Before using these commands, first confirm that it has been installed. php, and set php in the global variable. Open the command line and enter php -v to see the php version information

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

Related recommendations: [composer tutorial

Please enter the above three items in order. The functions are

1. Download the installation script - composer-setup.php - to the current directory.

2. Execute the installation process.

3. Delete the installation script.

For the specific installation process, please check the detailed description of composer China Mirror Website.

Please see how to install globally:

How to install composer

After setting up, enter composer on the command line to see the composer version information.

In the next article, we will continue to introduce how to use composer.

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!