https://github.com/geobas/lumen-auth
JWT authentication for Lumen
https://github.com/geobas/lumen-auth
jwt-auth lumen-framework php
Last synced: 8 months ago
JSON representation
JWT authentication for Lumen
- Host: GitHub
- URL: https://github.com/geobas/lumen-auth
- Owner: geobas
- Created: 2021-07-19T09:25:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-29T09:51:00.000Z (almost 5 years ago)
- Last Synced: 2025-10-07T12:58:42.451Z (8 months ago)
- Topics: jwt-auth, lumen-framework, php
- Language: PHP
- Homepage:
- Size: 94.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## A production-ready JWT (authentication) template for Lumen to build secure APIs
### Serves routes for user registration, login, logout, refresh, reset password
---
### Set up
```
1. composer install
2. composer run-script post-root-package-install
3. artisan key:generate && artisan jwt:secret
4. Modify the generated .env accordingly
5. artisan migrate:fresh
```
### Execute unit tests
```
composer test
```