Download the PHP package decoda/audit without Composer
On this page you can find all versions of the php package decoda/audit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package audit
Short Description Lightweight object logging for CodeIgniter 4
License MIT
Homepage https://github.com/gsse/ci4-audit
Informations about the package audit
[!CAUTION] This project is usable but still under development, feel free to clone and change as you wish.
Decoda\Audit
Lightweight object logging for CodeIgniter 4
Attention: this project is still under development, feel free to clone and change as you wish.
Quick Start
- Install with Composer:
> composer require decoda/audit - Update the database:
> php spark migrate -all - Set up your models:
Features
Provides ready-to-use object logging for CodeIgniter 4
Installation
Install easily via Composer to take advantage of CodeIgniter 4's autoloading capabilities and always be up-to-date:
Or, install manually by downloading the source files and adding the directory to app/Config/Autoload.php.
Once the files are downloaded and included in the autoload, run any library migrations to ensure the database is setup correctly:
Configuration (optional)
The library's default behavior can be altered by extending its config file. Copy examples/Audit.php to app/Config/Audit.php and follow the instructions in the comments. If no config file is found in app/Config the library will use its own.
Database
Some applications may use audit logs in separate databases. If this is your scenario, you can set the database group in the $dbGroup property of the Audit.php configuration file, or set it in your .env file by adding the environment variable audit.dbGroup = 'your database group'
Usage
Once the library is included all the resources are ready to go and you just need to specify which models and events to audit. Use AuditTrait to add support to any models you would like tracked:
Then specify which events you want audited by assigning the corresponding audit methods for those events:
The Audit library will create basic logs of each event in the audits table, for example: