如何“卸载”#39;或者'删除'插件使用作曲家?

时间:2017-07-19 06:04:23

标签: cakephp plugins composer-php cakephp-3.0

我在cakephp3项目中安装了一些不必要的插件,我想从我的项目中删除/卸载,我找不到任何解决方案。有人会建议我做什么吗?

How to 'Uninstall' plugin using composer, which installed by the composer in cakephp3?

2 个答案:

答案 0 :(得分:8)

composer remove packageauthor/packagename --update-with-dependencies

你也可以修改你的composer.json来摆脱你不想要的东西并运行composer update

答案 1 :(得分:0)

仅使用composer remove packageauthor/packagename,因为--no-update-with-dependencies已被弃用,并且默认情况下为默认值。