ollico / laravel-audit-log-queue
A Laravel audit log queue.
Installs: 15 611
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^8.0
- davidianbonner/enumerated: ^7.0
- illuminate/config: ^9.30|^10.0|^11.0
- illuminate/contracts: ^9.30|^10.0|^11.0
- illuminate/database: ^9.30|^10.0|^11.0
- illuminate/support: ^9.30|^10.0|^11.0
- spatie/laravel-activitylog: ^4.9.0
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^7.0
- phpunit/phpunit: ^9.0
README
Laravel Audit Log Queue
A simple helper method to send activity logs to the queue.
Easily send auditable user (or any other entity) events to the queue and store them using the Activity Log by spatie.
The logger requires the use of an Enum
class to ensure only allowed events are logged.
Installation
Install the package
composer require ollico/laravel-audit-log-queue
This package uses auto-discovery which doesn't require you to manually add the ServiceProvider.
Publish the config
php artisan vendor:publish --provider="Ollico\AuditLog\AuditLogServiceProvider"
Thanks
This package depends on the terrific Activity Log package by Spatie.