如何从Composer全局删除软件包? [英] How to remove globally a package from Composer?

查看:152
本文介绍了如何从Composer全局删除软件包?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我运行了此命令以全局安装 PHPUnit

I ran this command to install globally PHPUnit:

composer global require 'phpunit/phpunit=3.7.*'

现在我要全局卸载 PHPUnit

有什么想法吗?

推荐答案

要删除全局安装的软件包,请运行:

To remove a globally installed package run:

composer global remove phpunit/phpunit

global 命令可让您运行许多命令,例如 install 要求更新,就好像您是从 COMPOSER_HOME 目录。

global command lets you to run many commands like install, require or update as if you were running them from the COMPOSER_HOME directory.

在此处阅读相关文档: http:// getcomposer .org / doc / 03-cli.md#global

Read the related documentation here: http://getcomposer.org/doc/03-cli.md#global

COMPOSER_HOME 取决于您的系统(在Linux上是〜/ .composer ),请参见 http ://getcomposer.org/doc/03-cli.md#composer-home 了解更多详情。

COMPOSER_HOME depends on your system (on Linux it's ~/.composer), see http://getcomposer.org/doc/03-cli.md#composer-home for more details.

这篇关于如何从Composer全局删除软件包?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆