GithubHelp home page GithubHelp logo

jeffersonsimaogoncalves / laravel-auto-binder Goto Github PK

View Code? Open in Web Editor NEW

This project forked from michael-rubel/laravel-auto-binder

1.0 0.0 0.0 32 KB

Binds your interfaces to implementations automatically

License: MIT License

PHP 100.00%

laravel-auto-binder's Introduction

Laravel Auto Binder

Laravel Auto Binder

Latest Version on Packagist Total Downloads Code Quality Code Coverage GitHub Tests Action Status PHPStan

This package automatically binds interfaces to implementations in the Service Container, scanning the specified project folders. This helps avoid manually registering container bindings when the project needs to bind a lot of interfaces to its implementations without any additional dependencies.

One requirement you should follow to use this package:

  • Folder with interfaces always should be the child of the folder where it belongs.

For example: App\Services\YourService => App\Services\Interfaces\YourServiceInterface

You can customize folders to scan, type of bindings, and the naming convention of your interfaces in the config.

The package requires PHP ^8.x and Laravel ^8.71.

PHP Version Laravel Version Laravel Octane Compatible

Installation

Install the package using composer:

composer require michael-rubel/laravel-auto-binder

Then publish and customize the configuration:

php artisan vendor:publish --tag="auto-binder-config"

Usage

Edit the config and put your classes and interfaces to the proper folders with proper class naming. That's all.

So, this kind of bindings:

$this->app->bind(AuthServiceInterface::class, AuthService::class);
$this->app->bind(UserServiceInterface::class, UserService::class);
$this->app->bind(CompanyServiceInterface::class, CompanyService::class);
...

Or provider's array:

public array $singletons = [
    AuthServiceInterface::class    => AuthService::class,
    UserServiceInterface::class    => UserService::class,
    CompanyServiceInterface::class => CompanyService::class,
    ...
];

Will be registered automatically for you.

Testing

composer test

laravel-auto-binder's People

Contributors

michael-rubel avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.