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

Commit

Permalink
Merge branch 'hotfix/86'
Browse files Browse the repository at this point in the history
Close #90
Fixes #86
  • Loading branch information
weierophinney committed Mar 8, 2016
2 parents 05e8db5 + 0ab0cb7 commit 5b253ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- Nothing.
- [#90](https://github.com/zendframework/zend-mvc/pull/90) re-introduces the
various zend-di aliases and factories in `Zend\Mvc\Service\ServiceListenerFactory`,
which were accidently removed in the 2.7.0 release.

## 2.7.1 - 2016-03-02

Expand Down
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

0 comments on commit 5b253ce

Please sign in to comment.