rememberme icon indicating copy to clipboard operation
rememberme copied to clipboard

A PHP library that implements secure "Remember me" cookies

Results 8 rememberme issues
Sort by recently updated
recently updated
newest added

I'm actively using this library and interested in further improving it - see my open PRs: https://github.com/gbirke/rememberme/pulls/m-ober @gbirke, are you still interested in maintaining it? If not, I would be...

The column `$expiresColumn` stores the expiry timestamp, which is calculated like: `$expire = time() + $this->expireTime`. OTOH, the code to clean the expired tokens looks like this: ```php if ($this->cleanExpiredTokensOnLogin)...

Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.5.4 to 9.5.8. Changelog Sourced from phpunit/phpunit's changelog. [9.5.8] - 2021-07-31 Fixed #4740: phpunit.phar does not work with PHP 8.1 [9.5.7] - 2021-07-19 Fixed #4720: PHPUnit does...

dependencies

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

When implementing this we stumbled upon a minor security improvement that could be done. We used this library with the username as an identifier, since we would also need something...

If you set `$rememberMe = new Birke\Rememberme\Authenticator(); $rememberMe->setExpireTime(7776000);` this value will not be transferred to the instance of PHPCookie class, as there is only a `if (is_null($cookie)) { $cookie =...

Feature Request

Hello, I'm getting memory exhausted errors with this library in production. I've tried increasing the allowed memory usage, but 400MB is more than I am comfortable with. PHP Fatal error:...

I initialize my `Storage` together with my `Authenticator` as part of a single service in my DI container. So, it would be helpful if I could access `Storage` (for example,...