2017 © Pedro Peláez
 

symfony-bundle avanaudit-bundle

Audit bundle for symfony2 and doctrine orm, logs any database change

image

cris/avanaudit-bundle

Audit bundle for symfony2 and doctrine orm, logs any database change

  • Monday, August 29, 2016
  • by lordmacu
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Audit bundle

This bundle creates an audit log for all doctrine ORM database related changes:, (*1)

  • inserts and updates including their diffs and relation field diffs.
  • many to many relation changes, association and dissociation actions.
  • if there is an user in token storage, it will link him to the log.
  • the audit entries are inserted within the same transaction during flush, if something fails the state remains clean.

Basically you can track any change from these log entries if they were managed through standard ORM operations., (*2)

NOTE: audit cannot track DQL or direct SQL updates or delete statement executions., (*3)

Install

First, install it with composer:, (*4)

composer require data-dog/audit-bundle

Then, add it in your AppKernel bundles., (*5)

Demo

The best way to see features is to see the actual demo. Just clone the bundle and run:, (*6)

make

Visit http://localhost:8000/audit to see the log actions., (*7)

The demo application source is available in example directory and it is a basic symfony application., (*8)

Usage

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., (*9)

Screenshots

All paginated audit log: Screenshot, (*10)

Clicked on history reference for specific resource: Screenshot, (*11)

Showing insert data: Screenshot, (*12)

License

The audit bundle is free to use and is licensed under the MIT license, (*13)

The Versions