Skip to content

Commit

Permalink
Merge pull request #7 from dotkernel/develop
Browse files Browse the repository at this point in the history
changed module config key to dot_mapper
  • Loading branch information
n3vrax authored Mar 18, 2017
2 parents 6bcefbb + 3b4bed9 commit a23be6e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.3.0 - 2017-03-18

### Changed
* module config key from `dot_ems` to `dot_mapper`. Bumped version due to BC break

### Added
* Nothing

### Deprecated
* Nothing

### Removed
* Nothing

### Fixed
* Nothing


## 0.2.0 - 2017-03-15

### Changed
Expand Down
2 changes: 1 addition & 1 deletion ems.global.php.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

return [
'dot_ems' => [
'dot_mapper' => [

'default_adapter' => 'database',

Expand Down
2 changes: 1 addition & 1 deletion src/ConfigProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __invoke()
return [
'dependencies' => $this->getDependencyConfig(),

'dot_ems' => [
'dot_mapper' => [

'mapper_manager' => [

Expand Down
2 changes: 1 addition & 1 deletion src/Factory/MapperManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ class MapperManagerFactory
{
public function __invoke(ContainerInterface $container)
{
return new MapperManager($container, $container->get('config')['dot_ems']);
return new MapperManager($container, $container->get('config')['dot_mapper']);
}
}

0 comments on commit a23be6e

Please sign in to comment.