Skip to content

Commit

Permalink
Merge branch 'Sam-Burns-psr-11' into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
akrabat committed Mar 18, 2017
2 parents 484a16f + c1c2a3a commit 7aabd47
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Slim/App.php
Expand Up @@ -17,7 +17,7 @@
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\ResponseInterface;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use FastRoute\Dispatcher;
use Slim\Exception\SlimException;
use Slim\Exception\MethodNotAllowedException;
Expand Down
2 changes: 1 addition & 1 deletion Slim/CallableResolver.php
Expand Up @@ -9,7 +9,7 @@
namespace Slim;

use RuntimeException;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Slim\Interfaces\CallableResolverInterface;

/**
Expand Down
2 changes: 1 addition & 1 deletion Slim/CallableResolverAwareTrait.php
Expand Up @@ -9,7 +9,7 @@
namespace Slim;

use RuntimeException;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use Slim\Interfaces\CallableResolverInterface;

/**
Expand Down
2 changes: 1 addition & 1 deletion Slim/DeferredCallable.php
Expand Up @@ -10,7 +10,7 @@
namespace Slim;

use Closure;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;

class DeferredCallable
{
Expand Down
2 changes: 1 addition & 1 deletion Slim/Routable.php
Expand Up @@ -8,7 +8,7 @@
*/
namespace Slim;

use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;

/**
* A routable, middleware-aware object
Expand Down
2 changes: 1 addition & 1 deletion Slim/Router.php
Expand Up @@ -9,7 +9,7 @@
namespace Slim;

use FastRoute\Dispatcher;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;
use InvalidArgumentException;
use RuntimeException;
use Psr\Http\Message\ServerRequestInterface;
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -32,7 +32,8 @@
"pimple/pimple": "^3.0",
"psr/http-message": "^1.0",
"nikic/fast-route": "^1.0",
"container-interop/container-interop": "^1.1"
"container-interop/container-interop": "^1.2",
"psr/container": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5",
Expand Down
1 change: 0 additions & 1 deletion tests/AppTest.php
Expand Up @@ -9,7 +9,6 @@

namespace Slim\Tests;

use Interop\Container\ContainerInterface;
use Psr\Http\Message\ResponseInterface;
use Slim\App;
use Slim\Container;
Expand Down
2 changes: 1 addition & 1 deletion tests/ContainerTest.php
Expand Up @@ -9,7 +9,7 @@
namespace Slim\Tests;

use Slim\Container;
use Interop\Container\ContainerInterface;
use Psr\Container\ContainerInterface;

class ContainerTest extends \PHPUnit_Framework_TestCase
{
Expand Down

0 comments on commit 7aabd47

Please sign in to comment.