Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to 'Uninstall' or 'Remove' plugin using composer?

I have installed some unnecessary plugins in my cakephp3 project, I want to remove/uninstall from my project, I'm not able to find any solutions. Will any suggest me what I do?

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

like image 873
Binary Brackets Avatar asked Dec 08 '22 17:12

Binary Brackets


1 Answers

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

You can also modify your composer.json to get rid of what you don't want and run composer update

like image 52
Bdloul Avatar answered Dec 22 '22 03:12

Bdloul