Skip to content

Commit

Permalink
Merge pull request #34 from http-interop/psr-17
Browse files Browse the repository at this point in the history
Update to use stable package of psr
  • Loading branch information
Nyholm authored Jul 31, 2018
2 parents 268656e + b54aa2b commit 3c6c620
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"http-interop/http-factory": "^0.4 || 1.0.x-dev",
"psr/http-factory": "^1.0",
"phpunit/phpunit": "^6.5 || ^7.0"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion test/RequestFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Interop\Http\Factory;

use Interop\Http\Factory\RequestFactoryInterface;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\RequestFactoryInterface;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\UriInterface;

Expand Down
2 changes: 1 addition & 1 deletion test/ResponseFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Interop\Http\Factory;

use Interop\Http\Factory\ResponseFactoryInterface;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\ResponseFactoryInterface;
use Psr\Http\Message\ResponseInterface;

abstract class ResponseFactoryTestCase extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion test/ServerRequestFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Interop\Http\Factory;

use Interop\Http\Factory\ServerRequestFactoryInterface;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\ServerRequestFactoryInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Message\UriInterface;

Expand Down
2 changes: 1 addition & 1 deletion test/StreamFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Interop\Http\Factory;

use Interop\Http\Factory\StreamFactoryInterface;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\StreamFactoryInterface;
use Psr\Http\Message\StreamInterface;

abstract class StreamFactoryTestCase extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion test/UploadedFileFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Interop\Http\Factory;

use Interop\Http\Factory\UploadedFileFactoryInterface;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\StreamInterface;
use Psr\Http\Message\UploadedFileFactoryInterface;
use Psr\Http\Message\UploadedFileInterface;

abstract class UploadedFileFactoryTestCase extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion test/UriFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Interop\Http\Factory;

use Interop\Http\Factory\UriFactoryInterface;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\UriFactoryInterface;
use Psr\Http\Message\UriInterface;

abstract class UriFactoryTestCase extends TestCase
Expand Down

0 comments on commit 3c6c620

Please sign in to comment.