diff --git a/CHANGELOG.md b/CHANGELOG.md index eba08a3..f47384c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## 0.2.0 - 2017-03-16 + +### Changed +* updated container references to PSR11 container +* updated dependencies + +### Added +* Nothing + +### Deprecated +* Nothing + +### Removed +* Nothing + +### Fixed +* Nothing + + ## 0.1.1 - 2017-03-11 ### Added diff --git a/composer.json b/composer.json index 4c01565..5e79ff8 100644 --- a/composer.json +++ b/composer.json @@ -11,10 +11,10 @@ ], "require": { "php": "^7.1", - "container-interop/container-interop": "^1.1", + "zendframework/zend-servicemanager": "^3.3.0", - "dotkernel/dot-controller": "^0.1", - "dotkernel/dot-session": "^1.0" + "dotkernel/dot-controller": "^0.2", + "dotkernel/dot-session": "^2.0" }, "require-dev": { "phpunit/phpunit": "^4.8", @@ -32,7 +32,8 @@ }, "extra": { "branch-alias": { - "dev-master": "0.2-dev" + "dev-master": "0.2-dev", + "dev-develop": "0.3-dev" } } } diff --git a/src/Factory/SessionPluginFactory.php b/src/Factory/SessionPluginFactory.php index 408c6bd..cfcc85b 100644 --- a/src/Factory/SessionPluginFactory.php +++ b/src/Factory/SessionPluginFactory.php @@ -10,7 +10,7 @@ namespace Dot\Controller\Plugin\Session\Factory; use Dot\Controller\Plugin\Session\SessionPlugin; -use Interop\Container\ContainerInterface; +use Psr\Container\ContainerInterface; /** * Class SessionPluginFactory diff --git a/src/SessionPlugin.php b/src/SessionPlugin.php index 9743511..614af4b 100644 --- a/src/SessionPlugin.php +++ b/src/SessionPlugin.php @@ -10,7 +10,7 @@ namespace Dot\Controller\Plugin\Session; use Dot\Controller\Plugin\PluginInterface; -use Interop\Container\ContainerInterface; +use Psr\Container\ContainerInterface; use Zend\Session\Container; use Zend\Session\ManagerInterface; use Zend\Session\SessionManager;