hansott/psr7-cookies
Add and manage HTTP cookies on PSR-7 responses with a simple SetCookie helper. Create custom cookies, delete cookies, set long-lived cookies, or set cookies that expire at a specific time, then attach them to any Psr\Http\Message\ResponseInterface.

Via Composer
$ composer require hansott/psr7-cookies
<?php
use HansOtt\PSR7Cookies\SetCookie;
// Set a cookie with custom values.
$cookie = new SetCookie('name', 'value', time() + 3600, '/path', 'domain.tld', $secure, $httpOnly, $sameSite);
// Set a cookie to delete a cookie.
$cookie = SetCookie::thatDeletesCookie('name');
// Set a cookie that stays forever (5 years)
$cookie = SetCookie::thatStaysForever('name', 'value');
// Set a cookie that expires at a given time.
$now = new DateTimeImmutable();
$tomorrow = $now->modify('tomorrow');
$cookie = SetCookie::thatExpires('name', 'value', $tomorrow);
// Add the cookie to a response
$responseWithCookie = $cookie->addToResponse($response);
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email hans at iott consulting instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
How can I help you explore Laravel packages today?