Skip to content

Commit

Permalink
Merge pull request #4 from dotkernel/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
n3vrax committed Mar 15, 2017
2 parents bcd1d28 + 1cc7db1 commit 8d5a8e4
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 7 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 1.1.0 - 2017-03-16

### Changed
* updates to PSR11 container where possible
* dependencies updates

### Added
* Nothing

### Deprecated
* Nothing

### Removed
* Nothing

### Fixed
* Nothing


## 1.0.1 - 2017-03-11

Updated php file headers doc blocks
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
"require": {
"php": "^7.1",
"psr/http-message": "^1.0",
"container-interop/container-interop": "^1.1",
"zendframework/zend-servicemanager": "^3.0",
"zendframework/zend-servicemanager": "^3.3.0",
"zendframework/zend-log": "^2.9.0"
},
"require-dev": {
Expand All @@ -34,7 +33,8 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
"dev-master": "1.1-dev",
"dev-develop": "1.2-dev"
}
}
}
6 changes: 5 additions & 1 deletion src/Factory/FilterPluginManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Dot\Log\Factory;

use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Zend\Log\FilterPluginManager;

/**
Expand All @@ -18,6 +18,10 @@
*/
class FilterPluginManagerFactory
{
/**
* @param ContainerInterface $container
* @return FilterPluginManager
*/
public function __invoke(ContainerInterface $container)
{
$config = $container->has('config')
Expand Down
6 changes: 5 additions & 1 deletion src/Factory/FormatterPluginManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Dot\Log\Factory;

use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Zend\Log\FormatterPluginManager;

/**
Expand All @@ -18,6 +18,10 @@
*/
class FormatterPluginManagerFactory
{
/**
* @param ContainerInterface $container
* @return FormatterPluginManager
*/
public function __invoke(ContainerInterface $container)
{
$config = $container->has('config')
Expand Down
6 changes: 5 additions & 1 deletion src/Factory/ProcessorPluginManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Dot\Log\Factory;

use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Zend\Log\ProcessorPluginManager;

/**
Expand All @@ -18,6 +18,10 @@
*/
class ProcessorPluginManagerFactory
{
/**
* @param ContainerInterface $container
* @return ProcessorPluginManager
*/
public function __invoke(ContainerInterface $container)
{
$config = $container->has('config')
Expand Down
6 changes: 5 additions & 1 deletion src/Factory/WriterPluginManagerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Dot\Log\Factory;

use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Zend\Log\WriterPluginManager;

/**
Expand All @@ -18,6 +18,10 @@
*/
class WriterPluginManagerFactory
{
/**
* @param ContainerInterface $container
* @return WriterPluginManager
*/
public function __invoke(ContainerInterface $container)
{
$config = $container->has('config')
Expand Down

0 comments on commit 8d5a8e4

Please sign in to comment.