sdfcloud / di
sdfcloud\di is a powerful and lightweight php dependency injection library.
Requires
- psr/container: ^1.0
- ua1-labs/firebug: 2.*
Requires (Dev)
- ua1-labs/firetest: 2.*
This package is auto-updated.
Last update: 2024-11-18 15:05:14 UTC
README
A light weight PHP dependency injection library featuring automatic, constructor based, dependency resolution. When you need a new object from a class definition just simply ask for it. Any dependencies type hinted on the constructor will be resolved and injected before the class is instantiated into an object.
The whole reason for Sdfcloud/Di to exist is to manage and resolve dependencies for you. The Dependency Injection design pattern provides you with the ability to decouple class dependencies across your entire application by resolving these dependencies for you.
Features:
- Automatic constructor based dependency resolution. Dependencies can be resolved automatically for you by type hinting the object you expect to be injected in the constructor.
- Circular dependency detection.
- Automatic object caching. So that when you ask for an object more than once, it is provided without having to run through the process of dependency resolution.
- The ability to define your own dependencies within the DI container. This works great for mocking dependencies within unit/integration tests.
- Ability to define your own dependencies for the situation where you need to get a class with specific dependencies that are not defined within the container.
Documentation
TBD
Install Di Using Composer
composer require sdfcloud/di
Getting Started
Let's say you would like to get an instantiated object MyClass1
. Well MyClass1
requires that you pass into its constructor MyClass2
. Sdfcloud/Di will resolve MyClass2
and automatically inject it into MyClass1
and return the instantiated object MyClass1
to you.
MyClass1
class MyClass1
{
public function __construct(MyClass2 $myClass2) {}
}
MyClass2
class MyClass2 {}
Di In Action
// instantiate di
$di = new Sdfcloud\Di();
// obtain an object and have it's dependencies resolved for you
$myClass1 = $di->get('MyClass1');