cris / avanaudit-bundle
Audit bundle for symfony2 and doctrine orm, logs any database change
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.8
- doctrine/orm: ~2.4
- symfony/framework-bundle: ~2.6
Requires (Dev)
- php: >=5.6.0
- ext-pdo: *
- ext-pdo_sqlite: *
- data-dog/pager-bundle: ~0.2
- doctrine/doctrine-bundle: ~1.5
- doctrine/doctrine-fixtures-bundle: ~2.2.0
- doctrine/orm: ~2.5.0
- knplabs/knp-menu-bundle: ~2.0
- knplabs/knp-time-bundle: ~1.3
- phpunit/phpunit: ~4.7.0
- sensio/framework-extra-bundle: ~3.0.9
- symfony/symfony: ~2.7.0
This package is not auto-updated.
Last update: 2024-11-18 14:49:27 UTC
README
This bundle creates an audit log for all doctrine ORM database related changes:
- 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.
NOTE: audit cannot track DQL or direct SQL updates or delete statement executions.
Install
First, install it with composer:
composer require data-dog/audit-bundle
Then, add it in your AppKernel bundles.
Demo
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.
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.
Screenshots
Clicked on history reference for specific resource:
License
The audit bundle is free to use and is licensed under the MIT license