Home>Article>Development Tools> How to automatically install Composer’s php-build plugin

How to automatically install Composer’s php-build plugin

藏色散人
藏色散人 forward
2021-06-30 17:16:58 2383browse

How to automatically install the php-build plug-in ofComposer? The following is a detailed introduction to the method of automatically installing Composer's php-build plug-in in the composer tutorial column.

php-build can help you compile and manage different versions of PHP installations. Travis CI, a well-known continuous integration testing service, uses php-build.

Composer is a new generation of PHP package manager.

Composer Plugin combines the two. It is a plug-in for php-build that automatically installs Composer on each php-build build, so you don't have to install it manually.

Installation

Use the installation script

wget -O install.sh http://git.io/Hqr8pQ || curl -o install.sh http://git.io/Hqr8pQ && ./install.sh

Default installation to/usr/local/, set thePREFIXenvironment variable to switch Installation location.

Manual installation

First download the plug-in:

wget https://github.com/rogeriopradoj/php-build-plugin-composer/archive/master.tar.gz tar -vzxf master.tar.gz

In order to facilitate the update, you can also usegit clone:

git clone https://github.com/rogeriopradoj/php-build-plugin-composer.git php-build-plugin-composer-master

Ensurecomposer.shhas executable permissions:

cd ~/php-build-plugin-composer-master chmod +x share/php-build/after-install.d/composer.sh

Finally, copy thesharedirectory to yourphp-buildinstallation, or set up the software Link:

Copy

cd ~/php-build-plugin-composer-master cp -r share /usr/local

Link

cd /usr/local/share/php-build/after-install.d ln -s ~/php-build-plugin-composer-master/share/php-build/after-install.d/composer.sh

Note, here we assume that you installedphp-buildto/usr/local(default location), if yourphp-buildinstallation location is different, you need to adjust the above command.

There is nothing to say about using

. Just usephp-buildas usual,composerwill be installed automatically, no need to worry.

The above is the detailed content of How to automatically install Composer’s php-build plugin. For more information, please follow other related articles on the PHP Chinese website!

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