Libraries tagged by session tokens
jasonroyle/li3_jwt
33 Downloads
JSON Web Token Session Adapter for Lithium
allyans3/laravel-auth-tracker
13 Downloads
Track and manage sessions, Passport tokens and Sanctum tokens in Laravel.
tripteki/laravelphp-auth-api
77 Downloads
Trip Teknologi's Laravel.php Auth API (Session/Token Sanctum, Token JWT, Token OAuth Passport)
mathsgod/jwt-recaptcha
6 Downloads
using json web token for recaptcha, without session, without database
laxo/authecticate-system
7 Downloads
The PHP JWT Authorization Class provides a straightforward way to manage user authentication and authorization using JSON Web Tokens (JWT). This class is designed to handle token generation, validation, and user session management seamlessly, ensuring secure and efficient authentication for your application.
victory7/ezsession
8 Downloads
ezsession is a versatile PHP session handler designed to provide seamless session management by combining the strengths of relational databases (MySQL), key-value stores (Redis), and JWT tokens. It offers developers flexible, secure, and scalable session storage, making it ideal for applications requiring high-performance, distributed, and stateless authentication systems. With ezsession, you can customize your session storage strategy to suit a variety of use cases while ensuring enhanced security and simplified management.
hashyoo/jwt-auth
38 Downloads
Json web token,登录认证(接口登录和web session登录),支持单社保和多设备登录,需要redis支持。目前仅适用于laravel
enzo/thinkjwt
13 Downloads
随着技术的发展,分布式web应用的普及,通过session管理用户登录状态成本越来越高,因此慢慢发展成为token的方式做登录身份校验,然后通过token去取redis中的缓存的用户信息,随着之后jwt的出现,校验方式更加简单便捷化,无需通过redis缓存,而是直接根据token取出保存的用户信息,以及对token可用性校验,单点登录更为简单
chrismcmacken/phptools
3558 Downloads
Small utilities that assist in developing applications
rapidwebltd/no-post-data-laravel-middleware
77 Downloads
Under certain conditions, when posting data from a form, the web server may lose the post data. This commonly happens if a user is uploading a large file beyond the size limits set in the web server's configuration. Laravel does not handle this situation and may end up throwing a somewhat confusing `TokenMismatchException in VerifyCsrfToken` due to CSRF protection. The 'No Post Data Laravel Middleware' handles situations in which a post request has been submitted and contains no post data - a situation which should not occur under normal usage. By default, the middleware will redirect back to the previous page with an error message flashed to the session. This can then be output on your view as you would normally handle validation errors. If needed, you can also modify this default behaviour and allow any code to run when the 'post request with no post data' situation is encountered.