Skip to content

Commit

Permalink
Merge pull request #3 from dotkernel/develop
Browse files Browse the repository at this point in the history
updated factory to use PSR11 container
  • Loading branch information
n3vrax authored Mar 15, 2017
2 parents 13c6b40 + 5e6649d commit 8e3d105
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 0.2.0 - 2017-03-15

### Changed
* Updated factory to use PSR11 container

### Added
* Nothing

### Deprecated
* Nothing

### Removed
* Nothing

### Fixed
* Nothing


## 0.1.1 - 2017-03-11

### Added
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
],
"require": {
"php": "^7.1",
"container-interop/container-interop": "^1.1",

"dotkernel/dot-controller": "^0.1",
"dotkernel/dot-flashmessenger": "^0.1"
"zendframework/zend-servicemanager": "^3.3.0",
"dotkernel/dot-controller": "^0.2",
"dotkernel/dot-flashmessenger": "^0.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
Expand All @@ -32,7 +31,8 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
"dev-master": "0.2-dev",
"dev-develop": "0.3-dev"
}
}
}
2 changes: 1 addition & 1 deletion src/Factory/FlashMessengerPluginFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

use Dot\Controller\Plugin\FlashMessenger\FlashMessengerPlugin;
use Dot\FlashMessenger\FlashMessengerInterface;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;

/**
* Class FlashMessengerPluginFactory
Expand Down

0 comments on commit 8e3d105

Please sign in to comment.