secureheaders / psradapter
SecureHeaders Psr7 Http Adapter
v0.1-beta1
2017-10-21 19:19 UTC
Requires
- aidantwoods/secureheaders: ^2.0
- psr/http-message: ^1.0
Requires (Dev)
- phpunit/phpunit: ^4.0
- zendframework/zend-diactoros: ^1.0
This package is auto-updated.
Last update: 2024-10-29 04:53:21 UTC
README
A PSR-7 adapter for SecureHeaders. For more information on adapters, see Framework Integration in the SecureHeaders Wiki.
Installation
composer require secureheaders/psradapter
Usage
Assuming you already have a PSR-7 response object (e.g. returned from a previous middleware) in the $response
variable:
// Configure SecureHeaders $headers = new Aidantwoods\SecureHeaders\SecureHeaders; $headers->strictMode(); // Instantiate the adapter with your response object $adapter = new SecureHeaders\PsrHttpAdapter\Psr7Adapter($response); // Apply your SecureHeaders configuration $headers->apply($adapter); // And finally retrieve the updated HTTP response object $response = $adapter->getSecuredResponse();