Skip to content

Commit 316babe

Browse files
committed
Fixed Zend config adding unwanted aliases to the Service Manager.
1 parent 001eaf5 commit 316babe

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 1.1.1 - 2019-03-25
4+
5+
### Fixed
6+
7+
- Zend config adding unwanted aliases to the Service Manager.
8+
39
## 1.1.0 - 2019-02-24
410

511
### Added

config/dependencies.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
MapperManagerInterface::class => MapperManagerFactory::class,
2121
],
2222
'invokables' => [
23-
Adapter\DynamicMapperAdapter::class,
24-
Adapter\StaticMapperAdapter::class,
23+
Adapter\DynamicMapperAdapter::class => Adapter\DynamicMapperAdapter::class,
24+
Adapter\StaticMapperAdapter::class => Adapter\StaticMapperAdapter::class,
2525
],
2626
],
2727
];

0 commit comments

Comments
 (0)