tymondesigns/jwt-auth

🔐 JSON Web Token Authentication for Laravel & Lumen

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 6 minutes ago
Added to GitGenius on September 5th, 2026
Created on September 4th, 2014
Open Issues & Pull Requests: 614 (+0)
GitHub issues: Enabled
Number of forks: 1,531
Total Stargazers: 11,494 (+0)
Total Subscribers: 258 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 12.4 days
Mean response time: 137.2 days
90th percentile: 201.3 days
Tracked items: 39

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 32
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 1,358 days
Stale 30+ days: 32
Stale 90+ days: 31

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • stale (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

jwt-auth is a Laravel and Lumen package that provides JSON Web Token authentication for PHP applications.

The package solves the problem of implementing stateless authentication in Laravel and Lumen frameworks by integrating JWT support directly into the application's authentication system. It allows developers to issue tokens to users and validate those tokens on subsequent requests without maintaining server-side session state. The approach works by generating cryptographically signed tokens that encode user identity and claims, which clients include in request headers for authentication.

Developers building API-driven applications or microservices with Laravel or Lumen should consider this package if they need stateless authentication that works across distributed systems. It suits projects where traditional session-based authentication is impractical, such as mobile applications, single-page applications, or services that need to scale horizontally without shared session storage. The package integrates with Laravel's built-in authentication guards, making it a natural fit for teams already using the framework's authentication ecosystem.

The project maintains active engagement with security concerns, routing vulnerability reports through a dedicated email channel rather than the public issue tracker. Development activity shows consistent attention to the codebase with regular updates addressing both bug fixes and feature enhancements. The maintainers respond to community contributions and issues, indicating ongoing stewardship of the package for compatibility with evolving Laravel versions.