This bundle creates an audit log for all doctrine ORM database related changes:
Basically you can track any change from these log entries if they were managed through standard ORM operations.
NOTE: audit cannot track DQL or direct SQL updates or delete statement executions.
First, install it with composer:
composer require cgarcia/audit-bundle
Then, add it in your AppKernel bundles.
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
...
new DataDog\AuditBundle\DataDogAuditBundle(),
...
);
...
}
Finally, create the database tables used by the bundle:
Using Doctrine Migrations Bundle:
php app/console doctrine:migrations:diff
php app/console doctrine:migrations:migrate
Using Doctrine Schema:
php app/console doctrine:schema:update --force
The best way to see features is to see the actual demo. Just clone the bundle and run:
make
Visit http://localhost:8000/audit to see the log actions.
The demo application source is available in example directory and it is a basic symfony application.
audit entities will be mapped automatically if you run schema update or similar. And all the database changes will be reflected in the audit log afterwards.
Sometimes, you might not want to create audit log entries for particular entities.
You can achieve this by listing those entities under the unaudired_entities configuuration
key in your config.yml, for example:
data_dog_audit:
unaudited_entities:
- AppBundle\Entity\NoAuditForThis
All paginated audit log:

Clicked on history reference for specific resource:

Showing insert data:

The audit bundle is free to use and is licensed under the MIT license
How can I help you explore Laravel packages today?