安装

你可以在本地安装 Composer,作为项目的一部分,也可以作为系统范围的可执行文件全局安装。

本地

要安装,请在终端中运行这些命令。

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
# to check the validity of the downloaded installer, check here against the SHA-384:
# https://composer.github.io/pubkeys.html
php composer-setup.php
php -r "unlink('composer-setup.php');"

这将把 composer.phar(一个 PHP 存档文件)下载到当前目录。现在你可以运行 php composer.phar 来使用 Composer,例如

php composer.phar install

在全局范围内

要全局使用 Composer,请将 composer.phar 文件放在属于 PATH 的目录中

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

现在你可以在任何地方使用 composer 而不是 php composer.phar,例如

composer install