├── LICENSE ├── README.md ├── SECURITY.md ├── composer.json └── src ├── AbstractTransport.php ├── Exception ├── InvalidResponseCodeException.php └── UnexpectedResponseException.php ├── Http.php ├── HttpFactory.php ├── Response.php ├── Transport ├── Curl.php ├── Socket.php └── Stream.php └── TransportInterface.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/AbstractTransport.php -------------------------------------------------------------------------------- /src/Exception/InvalidResponseCodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/Exception/InvalidResponseCodeException.php -------------------------------------------------------------------------------- /src/Exception/UnexpectedResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/Exception/UnexpectedResponseException.php -------------------------------------------------------------------------------- /src/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/Http.php -------------------------------------------------------------------------------- /src/HttpFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/HttpFactory.php -------------------------------------------------------------------------------- /src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/Response.php -------------------------------------------------------------------------------- /src/Transport/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/Transport/Curl.php -------------------------------------------------------------------------------- /src/Transport/Socket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/Transport/Socket.php -------------------------------------------------------------------------------- /src/Transport/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/Transport/Stream.php -------------------------------------------------------------------------------- /src/TransportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joomla-framework/http/HEAD/src/TransportInterface.php --------------------------------------------------------------------------------