Download the PHP package nimbly/resolve without Composer
On this page you can find all versions of the php package nimbly/resolve. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nimbly/resolve
More information about nimbly/resolve
Files in nimbly/resolve
Package resolve
Short Description A simple PSR-11 compliant autowiring and dependency injector.
License MIT
Informations about the package resolve
Resolve
Resolve is an autowiring and dependency resolver trait able to call functions or methods or make new instances of classes with (or without) the aid of a PSR-11 compliant container.
Use Resolve in your own project or library when you would like to leverage dependency injection decoupled from a specific ContainerInterface
implmentation.
Installation
Requirements
- PHP >= 8.0
Container support
Resolve can optionally be passed a PSR-11 Container instance but does not ship with an implementation.
You can try one of these:
Usage
Add the Resolve
trait to anything you would like to add dependency injection capabilities to.
Make
The make
method can instantiate any class you may need and resolve the constructor dependencies automatically from both the container instance (if one was provided) and the optional parameters you provide.
Make a thing callable
Often you would like to make something that represents a callable into an actual callable
type. You can pass a string that represents a callable or an actual callable
into the makeCallable
method.
You can pass in a fully qualified class namespace, an @
symbol, and the method name. For example:
Call
The call
method will call any callable
you pass in, resolve the dependencies of that callable from both the container and the optional set of parameters passed, and invoke that callable
.
If a dependency cannot be resolved from the container or optional parameters, Resolve will attempt to make
one for you automatically.
If making the dependecy fails or is not possible, an exception will be thrown.