optimistdigital / laravel-set-cache-headers
This Laravel package is a bug fix for not caching successful responses, especially the ones with the HTTP status code 204 (No Content).
1.0
2020-04-01 07:34 UTC
Requires
- php: ^7.3
Requires (Dev)
- orchestra/testbench: ^4.1
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-10-25 01:27:04 UTC
README
This Laravel package is a bug fix for not caching successful responses, especially the ones with the HTTP status code 204 (No Content).
See issue: laravel/framework#32178
Requirements
- Laravel 6.0+, probably works with older ones as well
Usage
composer require optimistdigital/laravel-set-cache-headers
Swap out SetCacheHeaders middleware in app/Http/Kernel.php
in your Laravel application:
Before:
protected $routeMiddleware = [
// ...
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
// ...
];
After
protected $routeMiddleware = [
// ...
'cache.headers' => \OptimistDigital\SetCacheHeaders\Http\Middleware\SetCacheHeaders::class,
// ...
];