saxulum / saxulum-http-client-adapter-joomla
This package is abandoned and no longer maintained.
No replacement package was suggested.
Saxulum Http Client Adapter Joomla
1.0.5
2014-11-04 08:01 UTC
Requires
- php: >=5.3
- joomla/http: ~1.1,>=1.1.4
- saxulum/saxulum-http-client-interface: ~1.5
Requires (Dev)
- phpunit/phpunit: ~4.0
Provides
This package is not auto-updated.
Last update: 2020-09-22 19:10:04 UTC
README
Features
- Provides a http client interface adapter for joomla
Requirements
- PHP 5.3+
- Joomla Http ~1.1
Installation
Through Composer as saxulum/saxulum-http-client-adapter-joomla.
Usage
use Saxulum\HttpClient\Joomla\HttpClient;
use Saxulum\HttpClient\Request;
$httpClient = new HttpClient();
$response = $httpClient->request(new Request(
'1.1',
Request::METHOD_GET,
'http://en.wikipedia.org',
array(
'Connection' => 'close',
)
));
You can inject your own joomla http instance while creating the http client instance.
use Joomla\Http\Http;
use Joomla\Http\Transport\Stream as StreamTransport;
use Saxulum\HttpClient\Joomla\HttpClient;
$options = array();
$transport = new StreamTransport($options);
$http = new Http($options, $transport);
$httpClient = new HttpClient($http);
IMPORTANT: The response protocol version is a fake, based on the request ones. Cause this http client does not support to set em.