vkovic / laravel-event-log
Easy way to log user created events
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/vkovic/laravel-event-log
Requires
- php: ^7.1
Requires (Dev)
- laravel/framework: 5.5.*|5.6.*|5.7.*|5.8.*
- orchestra/database: 3.5.*|3.6.*|3.7.*|3.8.*
- orchestra/testbench: 3.5.*|3.6.*|3.7.*|3.8.*
- phpunit/phpunit: ^6.3|^7.0
This package is auto-updated.
Last update: 2025-10-29 02:23:48 UTC
README
Easy way to log user created events
Lorem ipsum
Compatibility
The package is compatible with Laravel versions 5.5, 5.6, 5.7 and 5.8.
Installation
Install the package via composer:
composer require vkovic/laravel-event-log
Run migrations to create table which will be used to store event logs:
php artisan migrate
Usage
Contributing
If you plan to modify this Laravel package you should run tests that comes with it.
Easiest way to accomplish this would be with Docker, docker-compose and phpunit.
TIP: If you're planning to help writing tests, please consult this tutorial
First, we need to initialize Docker containers:
docker-compose up -d
After that, we can run tests and watch the output:
docker-compose exec app vendor/bin/phpunit