Middleware for snicco/http-routing that adds default headers to all responses.
A middleware for the snicco/http-routing component will add default headers
to all outgoing responses.
composer require snicco/must-match-route-middlewareThis middleware should be added for specific groups or globally in the MiddlewareResolver.
Choose what works best for you.
This middleware must be bound in the PSR-11 container that is used by the snicco/http-routing component.
// In your container definitions
use Snicco\Middleware\DefaultHeaders\DefaultHeaders;
$default_headers = new DefaultHeaders([
'X-Content-Type-Options' => 'nosniff' // key value pairs or header names and values.
])This repository is a read-only split of the development repo of the Snicco project.
This is how you can contribute.
Please report issues in the Snicco monorepo.
If you discover a security vulnerability, please follow our disclosure procedure.