├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml.dist ├── src ├── AbstractSerializer.php ├── Exception │ ├── DeprecatedMethodException.php │ └── ExceptionInterface.php ├── HeaderSecurity.php ├── MessageTrait.php ├── PhpInputStream.php ├── Request.php ├── Request │ └── Serializer.php ├── RequestTrait.php ├── Response.php ├── Response │ ├── EmitterInterface.php │ ├── SapiEmitter.php │ └── Serializer.php ├── Server.php ├── ServerRequest.php ├── ServerRequestFactory.php ├── Stream.php ├── UploadedFile.php └── Uri.php └── test ├── Bootstrap.php ├── HeaderSecurityTest.php ├── MessageTraitTest.php ├── PhpInputStreamTest.php ├── Request └── SerializerTest.php ├── RequestTest.php ├── Response ├── SapiEmitterTest.php └── SerializerTest.php ├── ResponseTest.php ├── ServerRequestFactoryTest.php ├── ServerRequestTest.php ├── ServerTest.php ├── StreamTest.php ├── TestAsset ├── Functions.php ├── SapiResponse.php └── php-input-stream.txt ├── UploadedFileTest.php └── UriTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | phpunit.xml 3 | -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/AbstractSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/AbstractSerializer.php -------------------------------------------------------------------------------- /src/Exception/DeprecatedMethodException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Exception/DeprecatedMethodException.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/HeaderSecurity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/HeaderSecurity.php -------------------------------------------------------------------------------- /src/MessageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/MessageTrait.php -------------------------------------------------------------------------------- /src/PhpInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/PhpInputStream.php -------------------------------------------------------------------------------- /src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Request.php -------------------------------------------------------------------------------- /src/Request/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Request/Serializer.php -------------------------------------------------------------------------------- /src/RequestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/RequestTrait.php -------------------------------------------------------------------------------- /src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Response.php -------------------------------------------------------------------------------- /src/Response/EmitterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Response/EmitterInterface.php -------------------------------------------------------------------------------- /src/Response/SapiEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Response/SapiEmitter.php -------------------------------------------------------------------------------- /src/Response/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Response/Serializer.php -------------------------------------------------------------------------------- /src/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Server.php -------------------------------------------------------------------------------- /src/ServerRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/ServerRequest.php -------------------------------------------------------------------------------- /src/ServerRequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/ServerRequestFactory.php -------------------------------------------------------------------------------- /src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Stream.php -------------------------------------------------------------------------------- /src/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/UploadedFile.php -------------------------------------------------------------------------------- /src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/src/Uri.php -------------------------------------------------------------------------------- /test/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/Bootstrap.php -------------------------------------------------------------------------------- /test/HeaderSecurityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/HeaderSecurityTest.php -------------------------------------------------------------------------------- /test/MessageTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/MessageTraitTest.php -------------------------------------------------------------------------------- /test/PhpInputStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/PhpInputStreamTest.php -------------------------------------------------------------------------------- /test/Request/SerializerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/Request/SerializerTest.php -------------------------------------------------------------------------------- /test/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/RequestTest.php -------------------------------------------------------------------------------- /test/Response/SapiEmitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/Response/SapiEmitterTest.php -------------------------------------------------------------------------------- /test/Response/SerializerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/Response/SerializerTest.php -------------------------------------------------------------------------------- /test/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/ResponseTest.php -------------------------------------------------------------------------------- /test/ServerRequestFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/ServerRequestFactoryTest.php -------------------------------------------------------------------------------- /test/ServerRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/ServerRequestTest.php -------------------------------------------------------------------------------- /test/ServerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/ServerTest.php -------------------------------------------------------------------------------- /test/StreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/StreamTest.php -------------------------------------------------------------------------------- /test/TestAsset/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/TestAsset/Functions.php -------------------------------------------------------------------------------- /test/TestAsset/SapiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/TestAsset/SapiResponse.php -------------------------------------------------------------------------------- /test/TestAsset/php-input-stream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/TestAsset/php-input-stream.txt -------------------------------------------------------------------------------- /test/UploadedFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/UploadedFileTest.php -------------------------------------------------------------------------------- /test/UriTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phly/http/HEAD/test/UriTest.php --------------------------------------------------------------------------------