php-extended/php-http-client-dnt

A psr-18 compliant middleware client that handles do not track headers


Keywords
php, http, client, header, dnt, do-not-track
License
MIT

Documentation

php-http-client-dnt

A psr-18 compliant middleware client that handles do not track headers.

Installation

The installation of this library is made via composer. Download composer.phar from their website. Then add to your composer.json :

	"require": {
		...
		"php-extended/php-http-client-dnt": "^2",
		...
	}

Then run php composer.phar update to install this library. The autoloading of all classes of this library is made through composer's autoloader.

Basic Usage

This library is to make a man in the middle for http requests and responses and logs the events when requests passes. It may be used the following way :


/* @var $client Psr\Http\Client\ClientInterface */    // psr-7
/* @var $request Psr\Http\Message\RequestInterface */ // psr-7

$client = new DoNotTrackClient($client);
$response = $client->sendRequest($request);

/* @var $response Psr\Http\Message\ResponseInterface */

This library handles the adding of DNT headers on the requests.

License

MIT (See license file).