How Can I Remove a Package from Laravel Using Php Composer?
What Is the Correct Way to Remove a Package from Laravel Using Php Composer? So Far I've Tried: Remove Declaration from File Composer. Json (In the "Require"...
What is the correct way to remove a package from Laravel using PHP Composer?
So far I've tried:
- Remove declaration from file composer.json (in the "require" section)
- Remove any class aliases from file app.php
- Remove any references to the package from my code :-)
- Run
composer update - Run
composer dump-autoload
None of these options are working! What am I missing?
16 Answers
Must Read
Composer 1.x and 2.x
Running the following command will remove the package from vendor (or wherever you install packages), composer.json and composer.lock. Change vendor/package appropriately.
composer remove vendor/package
Obviously you'll need to remove references to that package within your app.
I'm currently running the following version of Composer:
Composer version 1.0-dev (7b13507dd4d3b93578af7d83fbf8be0ca686f4b5) 2014-12-11 21:52:29