Skip to content

Commit b7096dc

Browse files
authored
Merge pull request #1 from dotkernel/develop
Develop
2 parents e90b34a + 563e39c commit b7096dc

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 0.2.0 - 2017-03-16
2+
3+
### Changed
4+
* updated container references to PSR11 container
5+
* updated dependencies
6+
7+
### Added
8+
* Nothing
9+
10+
### Deprecated
11+
* Nothing
12+
13+
### Removed
14+
* Nothing
15+
16+
### Fixed
17+
* Nothing
18+
19+
120
## 0.1.1 - 2017-03-11
221

322
### Added

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
],
1212
"require": {
1313
"php": "^7.1",
14-
"container-interop/container-interop": "^1.1",
14+
"zendframework/zend-servicemanager": "^3.3.0",
1515

16-
"dotkernel/dot-controller": "^0.1",
17-
"dotkernel/dot-session": "^1.0"
16+
"dotkernel/dot-controller": "^0.2",
17+
"dotkernel/dot-session": "^2.0"
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "^4.8",
@@ -32,7 +32,8 @@
3232
},
3333
"extra": {
3434
"branch-alias": {
35-
"dev-master": "0.2-dev"
35+
"dev-master": "0.2-dev",
36+
"dev-develop": "0.3-dev"
3637
}
3738
}
3839
}

src/Factory/SessionPluginFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Dot\Controller\Plugin\Session\Factory;
1111

1212
use Dot\Controller\Plugin\Session\SessionPlugin;
13-
use Interop\Container\ContainerInterface;
13+
use Psr\Container\ContainerInterface;
1414

1515
/**
1616
* Class SessionPluginFactory

src/SessionPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
namespace Dot\Controller\Plugin\Session;
1111

1212
use Dot\Controller\Plugin\PluginInterface;
13-
use Interop\Container\ContainerInterface;
13+
use Psr\Container\ContainerInterface;
1414
use Zend\Session\Container;
1515
use Zend\Session\ManagerInterface;
1616
use Zend\Session\SessionManager;

0 commit comments

Comments
 (0)