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

Viewed 10492

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?

2 Answers

Simply use composer remove packageauthor/packagename because the --no-update-with-dependencies has been deprecated and it's by default right now.

Related