How to Uninstall/Remove Package in Laravel?
composer remove VenderName/PackageName – The remove command removes packages from the composer.json file from the current directory. Syntax :- composer remove VenderName/PackageName Syntax:- composer remome VenderName/PackageName1 VenderName/PackageName2 If you want to remove more than one package then you have to run this command. Ex:- composer remove fzaninotto/faker –dev: It remove packages form require-dev This means, … Read more