All Projects → DamienHarper → auditor

DamienHarper / auditor

Licence: MIT license
auditor, the missing audit log library

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to auditor

EasyAuditBundle
A Symfony Bundle To Log Selective Events
Stars: ✭ 84 (-20%)
Mutual labels:  audit-log, audit-trail
Audit.net
An extensible framework to audit executing operations in .NET and .NET Core.
Stars: ✭ 1,647 (+1468.57%)
Mutual labels:  audit-logs, audit-log
doctrine-extensions
Doctrine2 behavioral extension Transformable
Stars: ✭ 14 (-86.67%)
Mutual labels:  doctrine, doctrine2
Doctrinefixturesbundle
Symfony integration for the doctrine/data-fixtures library
Stars: ✭ 2,174 (+1970.48%)
Mutual labels:  doctrine
Postgresql For Doctrine
PostgreSQL enhancements for Doctrine. Provides support for advanced data types (json, jssnb, arrays), text search, array operators and jsonb specific functions.
Stars: ✭ 181 (+72.38%)
Mutual labels:  doctrine
Sonata Doctrine Extensions
Doctrine2 behavioral extensions
Stars: ✭ 239 (+127.62%)
Mutual labels:  doctrine
sudosh
Shell wrapper to run a login shell with `sudo` as the current user for the purpose of audit logging
Stars: ✭ 87 (-17.14%)
Mutual labels:  audit-logs
Orm Pack
A Symfony Pack for Doctrine ORM
Stars: ✭ 1,850 (+1661.9%)
Mutual labels:  doctrine
fdiff
An OpenType table diff tool for fonts. Based on the fontTools TTX format.
Stars: ✭ 33 (-68.57%)
Mutual labels:  diffs
Datagrid
💪 DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc
Stars: ✭ 224 (+113.33%)
Mutual labels:  doctrine
Foundry
A model factory library for creating expressive, auto-completable, on-demand dev/test fixtures with Symfony and Doctrine.
Stars: ✭ 216 (+105.71%)
Mutual labels:  doctrine
Msgphp
Reusable domain layers. Shipped with industry standard infrastructure.
Stars: ✭ 182 (+73.33%)
Mutual labels:  doctrine
Core
🧿 Bolt 4 core
Stars: ✭ 243 (+131.43%)
Mutual labels:  doctrine
Pagerfanta
Pagination library for PHP applications with support for several data providers
Stars: ✭ 175 (+66.67%)
Mutual labels:  doctrine
difflicious
Scala library for readable diffs of values
Stars: ✭ 50 (-52.38%)
Mutual labels:  diffs
Doctrine Postgis
Spatial and Geographic Data with PostGIS and Doctrine.
Stars: ✭ 161 (+53.33%)
Mutual labels:  doctrine
git-split-diffs
GitHub style split diffs in your terminal
Stars: ✭ 2,423 (+2207.62%)
Mutual labels:  diffs
Idea Php Annotation Plugin
Add PHP annotation support for PhpStorm and IntelliJ
Stars: ✭ 216 (+105.71%)
Mutual labels:  doctrine
Core
Zikula Core Framework
Stars: ✭ 213 (+102.86%)
Mutual labels:  doctrine
Doctrine Bridge
Provides integration for Doctrine with various Symfony components.
Stars: ✭ 2,800 (+2566.67%)
Mutual labels:  doctrine

auditor Tweet

Latest Stable Version Latest Unstable Version auditor 3.x CI Scrutinizer Code Quality codecov License Total Downloads Monthly Downloads Daily Downloads

The purpose of auditor is to provide an easy and standardized way to collect audit logs.

Architecture

This library is architected around two concepts:

  • Auditing services responsible for collecting audit events
  • Storage services responsible for persisting audit traces

Those two kind of services are offered by Providers.

Default provider

A default provider is included with this library: the DoctrineProvider

DoctrineProvider offers both auditing services and sorage services. It creates audit logs 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 available, the user responsible for these changes and his IP address are recorded.
  • audit entries are inserted within the same transaction during flush event so that even if something fails the global state remains clean.

DoctrineProvider supports following RDBMS

  • MySQL
  • MariaDB
  • PostgreSQL
  • SQLite

DoctrineProvider should work with any other database supported by Doctrine. Though, we can only really support the ones we can test with GitHub Actions.

Basically you can track any change of any entity from audit logs.

NOTE: DoctrineProvider cannot track DQL or direct SQL statements executions.

Official Documentation

auditor official documentation can be found here.

Version Information

Version Status Requirements Badges
3.x Active development 🚀 (Not yet released) PHP >= 8.0, Symfony >= 5.4 auditor 3.x CI
Scrutinizer Code Quality
codecov
2.x Active support PHP >= 7.4, Symfony >= 4.4 auditor 2.x CI
Scrutinizer Code Quality
codecov
1.x EOL PHP >= 7.2, Symfony >= 3.4 auditor 1.x CI
Scrutinizer Code Quality
codecov

Changelog is available here

Contributing

auditor is an open source project. Contributions made by the community are welcome. Send us your ideas, code reviews, pull requests and feature requests to help us improve this project.

Do not forget to provide unit tests when contributing to this project. To do so, follow instructions in this dedicated README

Credits

License

auditor is free to use and is licensed under the MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].