Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Re-introduce missing Zend\Di aliases and factories #95

Merged
merged 1 commit into from
Mar 8, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/Service/ServiceListenerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class ServiceListenerFactory implements FactoryInterface
'Console' => 'ConsoleAdapter',
'ConsoleDefaultRenderingStrategy' => View\Console\DefaultRenderingStrategy::class,
'ControllerLoader' => 'ControllerManager',
'Di' => 'DependencyInjector',
'HttpDefaultRenderingStrategy' => View\Http\DefaultRenderingStrategy::class,
'MiddlewareListener' => 'Zend\Mvc\MiddlewareListener',
'RouteListener' => 'Zend\Mvc\RouteListener',
Expand All @@ -57,6 +58,7 @@ class ServiceListenerFactory implements FactoryInterface
'ViewPhpRendererStrategy' => 'Zend\View\Strategy\PhpRendererStrategy',
'ViewPhpRenderer' => 'Zend\View\Renderer\PhpRenderer',
'ViewRenderer' => 'Zend\View\Renderer\PhpRenderer',
'Zend\Di\LocatorInterface' => 'DependencyInjector',
'Zend\Form\Annotation\FormAnnotationBuilder' => 'FormAnnotationBuilder',
'Zend\Mvc\Controller\PluginManager' => 'ControllerPluginManager',
'Zend\Mvc\View\Http\InjectTemplateListener' => 'InjectTemplateListener',
Expand All @@ -77,6 +79,10 @@ class ServiceListenerFactory implements FactoryInterface
'ConsoleRouter' => ConsoleRouterFactory::class,
'ConsoleRouteNotFoundStrategy' => ConsoleRouteNotFoundStrategyFactory::class,
'ConsoleViewManager' => 'Zend\Mvc\Service\ConsoleViewManagerFactory',
'DependencyInjector' => DiFactory::class,
'DiAbstractServiceFactory' => DiAbstractServiceFactoryFactory::class,
'DiServiceInitializer' => DiServiceInitializerFactory::class,
'DiStrictAbstractServiceFactory' => DiStrictAbstractServiceFactoryFactory::class,
'DispatchListener' => 'Zend\Mvc\Service\DispatchListenerFactory',
'FilterManager' => 'Zend\Mvc\Service\FilterManagerFactory',
'FormAnnotationBuilder' => 'Zend\Mvc\Service\FormAnnotationBuilderFactory',
Expand Down