├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── src ├── Cookie.php ├── CookieBuilder.php ├── HttpCookie.php ├── HttpRequest.php ├── HttpResponse.php ├── MissingRequestMetaVariableException.php ├── Request.php └── Response.php └── test └── Unit ├── CookieBuilderTest.php ├── HttpCookieTest.php ├── HttpRequestTest.php └── HttpResponseTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | .idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/composer.json -------------------------------------------------------------------------------- /src/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/Cookie.php -------------------------------------------------------------------------------- /src/CookieBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/CookieBuilder.php -------------------------------------------------------------------------------- /src/HttpCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/HttpCookie.php -------------------------------------------------------------------------------- /src/HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/HttpRequest.php -------------------------------------------------------------------------------- /src/HttpResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/HttpResponse.php -------------------------------------------------------------------------------- /src/MissingRequestMetaVariableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/MissingRequestMetaVariableException.php -------------------------------------------------------------------------------- /src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/Request.php -------------------------------------------------------------------------------- /src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/src/Response.php -------------------------------------------------------------------------------- /test/Unit/CookieBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/test/Unit/CookieBuilderTest.php -------------------------------------------------------------------------------- /test/Unit/HttpCookieTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/test/Unit/HttpCookieTest.php -------------------------------------------------------------------------------- /test/Unit/HttpRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/test/Unit/HttpRequestTest.php -------------------------------------------------------------------------------- /test/Unit/HttpResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickLouys/http/HEAD/test/Unit/HttpResponseTest.php --------------------------------------------------------------------------------