cheatcodes / guzzle-hsts
v0.1.0
2016-10-25 16:57 UTC
Requires
- guzzlehttp/guzzle: ^6.2
Requires (Dev)
- phpdocumentor/phpdocumentor: ^2.9
- phpunit/phpunit: ^5.5
- squizlabs/php_codesniffer: ^2.7
This package is not auto-updated.
Last update: 2025-02-01 22:55:23 UTC
README
This is a Guzzle middleware to handle HTTP Strict Transport Security.
Installation
Make sure you have Composer installed and add guzzle-hsts as a dependency.
$ composer require cheatcodes/guzzle-hsts
Usage
Make sure Guzzle uses the CheatCodes\GuzzleHsts\HstsMiddleware::handler()
as a middleware by pushing it onto the
handler stack. After that, all http requests to known HSTS hosts will be automatically rewritten to https.
An example:
use CheatCodes\GuzzleHsts\HstsMiddleware; use GuzzleHttp\Client; use GuzzleHttp\HandlerStack; $stack = HandlerStack::create(); // Add HSTS middleware to the handler $stack->push(HstsMiddleware::handler()); // Initialize the Guzzle client with the handler $client = new Client(['handler' => $stack]); // Make a request to a https host with HSTS enabled $client->request('GET', 'https://hsts.badssl.com/'); // Later requests to the same hosts will automatically be rewritten to https $client->request('GET', 'http://hsts.badssl.com/');
License
MIT