always-open / laravel-process-stamps
Logs which process created or modified a record
Installs: 14 846
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 6
Open Issues: 1
Requires
- php: ^7.3|^8.0
- laravel/framework: ^8.0|^9.0|^10.0
Requires (Dev)
- doctrine/dbal: ^2.9|^3.0
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-10-17 19:13:29 UTC
README
It is sometimes very useful to know which process created or modified a particular record in your database. This package provides a trait to add to your Laravel models which automatically logs that for you.
Installation
You can install the package via composer:
composer require always-open/laravel-process-stamps
Configuration
php artisan vendor:publish --provider="\AlwaysOpen\ProcessStamps\ProcessStampsServiceProvider"
Running the above command will publish both the migration and the config file.
Usage
After adding the proper fields to your table, add the trait to your model.
// User model class User extends Model { use ProcessStampable;
Next, create a migration for your table and include the following:
$table->processIds();
To specify your own foreign key or index names, include the following options:
$table->processIds([ 'created_index_name' => 'custom_created_index_name', 'updated_index_name' => 'custom_updated_index_name', 'created_foreign_key_name' => 'custom_created_foreign_key_name', 'updated_foreign_key_name' => 'custom_updated_foreign_key_name', ]);
That will generate the nessesary field names to track processes.
Testing
composer test
Using Docker
All assets are set up under the docker-compose.yml file. The first time you run the docker image you must build it with the following command:
docker-compose build
Then you can bring it up in the background using:
docker-compose up -d
And the image is aliased so you can access its command line via:
docker exec -it processes-stamp-app /bin/bash
From there you can run the tests within an isolated environment
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email @tomschlick or @qschmick directly instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.