xbnz / laravel-auditable-users
Event-sourced user login, registration, password resets
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: ^8.4
- ext-redis: *
- blade-ui-kit/blade-heroicons: ^2.6
- laravel/framework: ^12.0
- league/pipeline: ^1.1
- league/uri: ^7.5
- livewire/flux: ^2.0
- livewire/flux-pro: ^2.0
- livewire/livewire: ^3.5
- nesbot/carbon: ^3.0
- ramsey/uuid: ^4.7
- spatie/laravel-event-sourcing: ^7.0
- symfony/serializer: ^7.0
- webmozart/assert: ^1.11
Requires (Dev)
- infection/infection: ^0.29
- jasonmccreary/laravel-test-assertions: ^2.6
- larastan/larastan: ^3.0
- laravel/pint: ^1.0
- orchestra/testbench: ^10.0
- phpstan/phpstan-webmozart-assert: ^2.0
- phpunit/phpunit: ^11.0
- spatie/invade: ^2.1
README
Laravel Auditable Users
Warning
Please do not use this package if you do not have a full understanding of event sourcing. You will need to modify things to fit your needs. Feel free to fork or contribute when your needs outgrow this package.
Note
You will need redis installed and configured to use this package
Note
Livewire and a Flux Pro subscription are required
Features
- User registration
- User login
- Password resets
- Login tracking
Installation
composer require xbnz/laravel-auditable-users php artisan vendor:publish --provider="XbNz\LaravelAuditableUsers\AuditableServiceProvider" cat "AUDITABLE_USERS_REDIRECT_AFTER_LOGIN={your_desired_route}" >> .env cat "AUTH_MODEL=XbNz\\LaravelAuditableUsers\\Projections\\User" >> .env php artisan migrate
Usage
Ensure the routes for this package were registered successfully:
php artisan route:list
Then visit the /login, /register, /forgot-password routes to see the package in action.
License
MIT