├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── BaseTest.php ├── MessageTrait.php ├── RequestIntegrationTest.php ├── ResponseIntegrationTest.php ├── ServerRequestIntegrationTest.php ├── StreamIntegrationTest.php ├── UploadedFileIntegrationTest.php └── UriIntegrationTest.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/composer.json -------------------------------------------------------------------------------- /src/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/BaseTest.php -------------------------------------------------------------------------------- /src/MessageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/MessageTrait.php -------------------------------------------------------------------------------- /src/RequestIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/RequestIntegrationTest.php -------------------------------------------------------------------------------- /src/ResponseIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/ResponseIntegrationTest.php -------------------------------------------------------------------------------- /src/ServerRequestIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/ServerRequestIntegrationTest.php -------------------------------------------------------------------------------- /src/StreamIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/StreamIntegrationTest.php -------------------------------------------------------------------------------- /src/UploadedFileIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/UploadedFileIntegrationTest.php -------------------------------------------------------------------------------- /src/UriIntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/psr7-integration-tests/HEAD/src/UriIntegrationTest.php --------------------------------------------------------------------------------