Hey,
It is one of the most easy task to do in Laravel. You just need to include the below steps to enable the service provider.
To register your provider, add it to the array:
‘providers’ => [
// Other Service Providers
App\Providers\ComposerServiceProvider::class,
],
This will work if you installed laravel with composer and will run automatically if you follow the correct steps.
Thank you!!