我在cakephp3项目中安装了一些不必要的插件,我想从我的项目中删除/卸载,我找不到任何解决方案。有人会建议我做什么吗?
How to 'Uninstall' plugin using composer, which installed by the composer in cakephp3?
答案 0 :(得分:8)
composer remove packageauthor/packagename --update-with-dependencies
你也可以修改你的composer.json来摆脱你不想要的东西并运行composer update
答案 1 :(得分:0)
仅使用composer remove packageauthor/packagename
,因为--no-update-with-dependencies
已被弃用,并且默认情况下为默认值。