xbnz/laravel-auditable-users

Event-sourced user login, registration, password resets

0.1.0 2025-03-31 06:41 UTC

This package is auto-updated.

Last update: 2025-04-02 05:44:35 UTC


README

Release Test suite PHPStan Mutation testing badge

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