You can register the service provider on bootstrap/app.php, you have an example there.
Or in the providers folder, you can create your own ComposerServiceProvider that extends the illuminate Service provider,
and just register them in the register method:
$this->app->register(PackageServiceProvider::class);