Remove Composer Package


Removing an installed Composer package from your PHP or Laravel project.

Let's consider you want to remove Livewire from your Laravel appliation

composer remove livewire/livewire

This command uninstalls the specified package from your project and updates the composer.json and composer.lock files.

You Might Also Like

Schedule Tasks with Artisan Scheduler

Automate recurring tasks such as sending emails, generating reports, or cleaning up the database usi...

Optimize Database Query Usage with Eager Loading

Use eager loading (with() method) in your controller to load related models with fewer database quer...