├── .php_cs.dist ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── http_test_server ├── composer.json ├── fixture ├── files │ ├── file1.txt │ ├── file2.txt │ ├── file3.txt │ └── resource.txt └── server.php └── src ├── HttpAsyncClientTest.php ├── HttpBaseTest.php ├── HttpClientTest.php ├── HttpFeatureTest.php └── PHPUnitUtility.php /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/README.md -------------------------------------------------------------------------------- /bin/http_test_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/bin/http_test_server -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/composer.json -------------------------------------------------------------------------------- /fixture/files/file1.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /fixture/files/file2.txt: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /fixture/files/file3.txt: -------------------------------------------------------------------------------- 1 | baz 2 | -------------------------------------------------------------------------------- /fixture/files/resource.txt: -------------------------------------------------------------------------------- 1 | abcdefghijklmnopqrstuvwxyz -------------------------------------------------------------------------------- /fixture/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/fixture/server.php -------------------------------------------------------------------------------- /src/HttpAsyncClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/src/HttpAsyncClientTest.php -------------------------------------------------------------------------------- /src/HttpBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/src/HttpBaseTest.php -------------------------------------------------------------------------------- /src/HttpClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/src/HttpClientTest.php -------------------------------------------------------------------------------- /src/HttpFeatureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/src/HttpFeatureTest.php -------------------------------------------------------------------------------- /src/PHPUnitUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-http/client-integration-tests/HEAD/src/PHPUnitUtility.php --------------------------------------------------------------------------------