fanmade / laravel-service-binding
Provide configuration to allow service and repository binding and switching between them via environment variables
Requires
- php: >=7.2
- illuminate/support: ^6 || ^7 || ^8
This package is auto-updated.
Last update: 2024-12-28 23:50:23 UTC
README
EARLY WORK IN PROGRESS, WOULD NOT RECOMMEND USING IT YET
Laravel Service Binding
Laravel does provide all necessary tools to allow using service or repository binding. Just bind it in the service provider and you're good to go.
public function register()
{
$this->app->bind(FooRepositoryInterface::class, EloquentFooRepository::class);
$this->app->bind(FooSearchServiceInterface::class, EloquentFooSearchService::class);
}
Now if you created an ElasticSearchFooSearchService
and you did everything properly, you only have to change the binding and everything should work fine.
But there are several reasons why you might use different services on different systems and that can get messy quickly. You also can't switch between different repositories without altering code :(
Maybe you start using if
/else
in the service provider now.
public function register()
{
$this->app->bind(FooRepositoryInterface::class, EloquentFooRepository::class);
if (env('ELASTICSEARCH_FOO_SERVICE', 'default')) {
$this->app->bind(FooSearchServiceInterface::class, ElasticSearchFooSearchService::class);
} else {
$this->app->bind(FooSearchServiceInterface::class, EloquentFooSearchService::class);
}
}
Or you switch to Symfony where that's not a problem because you only have to update your configuration files.
This package here does try to provide a solution for Laravel applications.