Download the PHP package mrgrain/eloquent-service-injection without Composer
On this page you can find all versions of the php package mrgrain/eloquent-service-injection. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mrgrain/eloquent-service-injection
More information about mrgrain/eloquent-service-injection
Files in mrgrain/eloquent-service-injection
Package eloquent-service-injection
Short Description Simple trait to inject services into Eloquent models via a property.
License MIT
Informations about the package eloquent-service-injection
Eloquent Service Injection
Simple trait to inject services into Eloquent models via a property.
Laravel's Eloquent models do not support constructor service injection. This trait aims to provide a simple and unified way of injection services into Eloquent models. It is doing that by using a property to define services, in a similar way how other model options can be defined (think $casts
or $with
for attribute casting and eager loading).
Requirements
- PHP >= 5.6.0
- Laravel >= 5.1 or Lumen >= 5.1
Installation
Add the package to your repository with Composer.
Usage
Extend your models by using the trait:
To always include the trait, add it to a base model all your models are extending from.
Add the services to be injected into the $inject
property.
Use the array key, to access the service anywhere.
Other usages
Wheres the trait has been designed for Eloquent models, it can be used in pretty much any class. Add and use it the same way as with models.
Contributing
First of all: Thank you for considering to contribute to this project. Without you the open source community would not be the same. If you decide to submit a pull request to this project, I'd kindly ask you to adhere to the following guidelines:
- Be aware of the scope of the project, to avoid disappointment.
- Please add appropriate tests to all pull requests.
- When interacting on this project, follow the Code of Conduct.