Skip to content

Commit 5a28fb9

Browse files
committed
zendframework is now laminas
1 parent 9c32239 commit 5a28fb9

10 files changed

+19
-19
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
- TEST_COMMAND="./vendor/bin/phpunit"
1616
matrix:
1717
- SUITE="Guzzle"
18-
- SUITE="Zend"
18+
- SUITE="Laminas"
1919
- SUITE="Slim"
2020
- SUITE="Nyholm"
2121
- SUITE="RingCentral"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| PSR7 Implementation | Status |
1010
| ------------------- |:-------------:|
1111
| Guzzle | [![Guzzle](https://travis-matrix-badges.herokuapp.com/repos/php-http/psr7-integration-tests/branches/master/1)](https://travis-ci.org/php-http/psr7-integration-tests) |
12-
| Zend | [![Zend](https://travis-matrix-badges.herokuapp.com/repos/php-http/psr7-integration-tests/branches/master/2)](https://travis-ci.org/php-http/psr7-integration-tests) |
12+
| Laminas | [![Laminas](https://travis-matrix-badges.herokuapp.com/repos/php-http/psr7-integration-tests/branches/master/2)](https://travis-ci.org/php-http/psr7-integration-tests) |
1313
| Slim | [![Slim](https://travis-matrix-badges.herokuapp.com/repos/php-http/psr7-integration-tests/branches/master/3)](https://travis-ci.org/php-http/psr7-integration-tests) |
1414
| Nyholm | [![Nyholm](https://travis-matrix-badges.herokuapp.com/repos/php-http/psr7-integration-tests/branches/master/4)](https://travis-ci.org/php-http/psr7-integration-tests) |
1515
| RingCentral | [![RingCentral](https://travis-matrix-badges.herokuapp.com/repos/php-http/psr7-integration-tests/branches/master/5)](https://travis-ci.org/php-http/psr7-integration-tests) |

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
},
2121
"require-dev": {
2222
"guzzlehttp/psr7": "^1.4",
23+
"laminas/laminas-diactoros": "^2.1",
2324
"nyholm/psr7": "^1.0",
2425
"ringcentral/psr7": "^1.2",
25-
"slim/psr7": "dev-master",
26-
"zendframework/zend-diactoros": "^2.1"
26+
"slim/psr7": "dev-master"
2727
},
2828
"extra": {
2929
"branch-alias": {

phpunit.xml.dist

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<directory>./tests/Slim/</directory>
2424
</testsuite>
2525

26-
<testsuite name="Zend">
27-
<directory>./tests/Zend/</directory>
26+
<testsuite name="Laminas">
27+
<directory>./tests/Laminas/</directory>
2828
</testsuite>
2929

3030
<testsuite name="Nyholm">

tests/Zend/RequestTest.php renamed to tests/Laminas/RequestTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Http\Psr7Test\Tests\Zend;
3+
namespace Http\Psr7Test\Tests\Laminas;
44

55
use Http\Psr7Test\RequestIntegrationTest;
6-
use Zend\Diactoros\Request;
6+
use Laminas\Diactoros\Request;
77

88
class RequestTest extends RequestIntegrationTest
99
{

tests/Zend/ResponseTest.php renamed to tests/Laminas/ResponseTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Http\Psr7Test\Tests\Zend;
3+
namespace Http\Psr7Test\Tests\Laminas;
44

55
use Http\Psr7Test\ResponseIntegrationTest;
6-
use Zend\Diactoros\Response;
6+
use Laminas\Diactoros\Response;
77

88
class ResponseTest extends ResponseIntegrationTest
99
{

tests/Zend/ServerRequestTest.php renamed to tests/Laminas/ServerRequestTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Http\Psr7Test\Tests\Zend;
3+
namespace Http\Psr7Test\Tests\Laminas;
44

55
use Http\Psr7Test\ServerRequestIntegrationTest;
6-
use Zend\Diactoros\ServerRequest;
6+
use Laminas\Diactoros\ServerRequest;
77

88
class ServerRequestTest extends ServerRequestIntegrationTest
99
{

tests/Zend/StreamTest.php renamed to tests/Laminas/StreamTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace Http\Psr7Test\Tests\Zend;
3+
namespace Http\Psr7Test\Tests\Laminas;
44

55
use Http\Psr7Test\StreamIntegrationTest;
6+
use Laminas\Diactoros\Stream;
67
use Psr\Http\Message\StreamInterface;
7-
use Zend\Diactoros\Stream;
88

99
class StreamTest extends StreamIntegrationTest
1010
{

tests/Zend/UploadedFileTest.php renamed to tests/Laminas/UploadedFileTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace Http\Psr7Test\Tests\Zend;
3+
namespace Http\Psr7Test\Tests\Laminas;
44

55
use Http\Psr7Test\UploadedFileIntegrationTest;
6-
use Zend\Diactoros\Stream;
7-
use Zend\Diactoros\UploadedFile;
6+
use Laminas\Diactoros\Stream;
7+
use Laminas\Diactoros\UploadedFile;
88

99
class UploadedFileTest extends UploadedFileIntegrationTest
1010
{

tests/Zend/UriTest.php renamed to tests/Laminas/UriTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

3-
namespace Http\Psr7Test\Tests\Zend;
3+
namespace Http\Psr7Test\Tests\Laminas;
44

55
use Http\Psr7Test\UriIntegrationTest;
6-
use Zend\Diactoros\Uri;
6+
use Laminas\Diactoros\Uri;
77

88
class UriTest extends UriIntegrationTest
99
{

0 commit comments

Comments
 (0)