Configure dependency injection in Zend Framework 2 or Zend Framework 3 using annotations, yaml or autowiring.
Heavily inspired by https://github.com/mikemix/mxdiModule.
- Install with Composer:
composer require reinfi/zf-dependency-injection
. - Enable the module via config in
appliation.config.php
undermodules
key:
return [
'modules' => [
'Reinfi\DependencyInjection',
// other modules
],
];
To use autowiring for your service you need to specify the 'AutoWiringFactory' within the service manager configuration.
'service_manager' => [
'factories' => [
YourService::class => \Reinfi\DependencyInjection\Factory\AutoWiringFactory::class,
],
]
Every service registered within the service manager can be autowired. Plugins within the plugin manager can also be autowired. If you need to register another mapping you can simply add the following:
PluginManagerResolver::addMapping('MyInterfaceClass', 'MyPluginManager');
If your service needs the container as dependency this can also be autowired.
If you like to add another resolver you can simply add one through the configuration.
'reinfi.dependencyInjection' => [
'autowire_resolver' => [
AnotherResolver::class,
],
]
It needs to implement the ResolverInterface.
To use annotation for your dependencies you need to specify the 'InjectionFactory' within the service manager configuration.
'service_manager' => [
'factories' => [
YourService::class => \Reinfi\DependencyInjection\Factory\InjectionFactory::class,
],
]
Following annotations are supported:
- Inject (directly injects a service from the service locator)
- InjectParent (must be used if you inject a service from a plugin manager)
- InjectConfig (dot separated path to a config value, e.g. service_manager.factories)
Also in addition there a several annotations to inject from plugin managers.
- InjectViewHelper
- InjectFilter
- InjectInputFilter
- InjectValidator
- InjectHydrator
- InjectFormElement
You can either pass directly the required service name or if you need options you can pass them as following:
@InjectFormElement(name="Service", options={"field": "value"})
If you need a doctrine repository there is also an annotation.
- InjectDoctrineRepository
It is only constructor injection supported, if you need di from setters you need to use delegator factories.
You can add the annotations at properties or at the __construct method.
/**
* @Inject("Namespace\MyService")
*
* @var MyService
*/
private $service;
/**
* @param MyService $service
*/
public function __construct(
MyService $service,
) {
$this->service = $service;
}
or
/**
* @Inject("Namespace\MyService")
*
* @param MyService $service
*/
public function __construct(
MyService $service,
) {
$this->service = $service;
}
The order is important and you should decide between constructor or property annotations.
If you want to use your own annotation you just need to implement the AnnotationInterface.
You can specify your dependencies within a yaml file.
YourService:
- {type: Inject, value: AnotherService}
To enable YAML usage you need to specify the following configuration
'reinfi.dependencyInjection' => [
'extractor' => YamlExtractor::class,
'extractor_options => [
'file' => 'path_to_your_yaml_file.yml',
],
]
Parsing mapping sources is very heavy. You should enable the cache on production servers. You can set up caching easily with any custom or pre-existing ZF2 cache adapter.
'reinfi.dependencyInjection' => [
'cache' => \Zend\Cache\Storage\Adapter\Memory::class,
'cache_options' => [],
'cache_plugins' => [],
]
You can find more information about available out-of-the-box adapters at the ZF2 docs site.
- Warmup cache for ZF2:
php public/index.php reinfi:di cache warmup
Fills the cache with every injection required by a class. This can either be via AutoWiringFactory or InjectionFactory. - Warmup script for ZF2 or ZF3: php bin/cache-warmup Fills the cache with every injection required by a class. This can either be via AutoWiringFactory or InjectionFactory.
Feel free to ask any questions or open own pull requests.