How to Remove Composer Package in Laravel 8 Tutorial

Reading Time: 3 minutes
4,812 Views

Inside this article we will see how to remove a installed composer package from laravel 8 application. When we work with application according to use we generally install several composer packages. If not needed then we uninstall or remove composer package from laravel 8 setup.

When composer package installs it updates composer.json file in laravel application. Also when we remove any package updates that file.

This tutorial will be very easy to understand and also easy to remove compose package from your application. We will see all steps to remove composer package in laravel 8 in a very detailed way.

Learn More-

Let’s get started.


Remove Composer Package Steps

There are few steps we need to follow to remove a composer package in a proper way.

  • Remove Package Providers and Aliases (if any)
  • Remove Package Files
  • Clear Cached Config

Step #1 – Remove Provider and Alias

If you have added any provider line in providers and alias line in aliases array of /config/app.php file.

You need to remove those manually from app.php.

You can take an example like this –

'providers' => [

    ...
    
     Maatwebsite\Excel\ExcelServiceProvider::class,
],

'aliases' => [
 
    ...

    'Excel' => Maatwebsite\Excel\Facades\Excel::class,
]

Step #2 – Remove Package Files & Dependencies

When you install any composer package it installs several files. So to remove those files in a proper way from application, here is the syntax of composer command to remove any package.

Syntax

$ composer remove <packageName>

Example

$ composer remove maatwebsite/excel

Step #3 – Clear Config

Next, we need to clear cached config from application.

$ php artisan config:clear

Successfully, you can remove a composer package from laravel application in a proper way.

We hope this article helped you to learn How to Remove Composer Package in Laravel 8 Tutorial in a very detailed way.

Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.

If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.

Sanjay KumarHello friends, I am Sanjay Kumar a Web Developer by profession. Additionally I'm also a Blogger, Youtuber by Passion. I founded Online Web Tutor and Skillshike platforms. By using these platforms I am sharing the valuable knowledge of Programming, Tips and Tricks, Programming Standards and more what I have with you all. Read more