From a2ed793131cf20c80d993f014ddc78e073b7c805 Mon Sep 17 00:00:00 2001 From: damienharper Date: Tue, 15 Jan 2019 18:38:41 +0100 Subject: [PATCH 1/3] Add damienharper/doctrine-audit-bundle --- .../1.0/config/packages/dh_doctrine_audit.yaml | 10 ++++++++++ damienharper/doctrine-audit-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 18 insertions(+) create mode 100644 damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml create mode 100644 damienharper/doctrine-audit-bundle/1.0/manifest.json diff --git a/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml b/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml new file mode 100644 index 00000000..42d49006 --- /dev/null +++ b/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml @@ -0,0 +1,10 @@ +dh_doctrine_audit: + # Configuration reference available at: + # https://github.com/DamienHarper/DoctrineAuditBundle#configuration + + entities: +# MyBundle\Entity\MyAuditedEntity1: ~ # all MyAuditedEntity1 properties are audited +# MyBundle\Entity\MyAuditedEntity2: +# ignored_columns: # properties ignored by the audit process +# - createdAt +# - updatedAt \ No newline at end of file diff --git a/damienharper/doctrine-audit-bundle/1.0/manifest.json b/damienharper/doctrine-audit-bundle/1.0/manifest.json new file mode 100644 index 00000000..ed4b07bd --- /dev/null +++ b/damienharper/doctrine-audit-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "DH\\DoctrineAuditBundle\\DHDoctrineAuditBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} \ No newline at end of file From 030f3b07b5b1c192087e438be8954642b9b3fb02 Mon Sep 17 00:00:00 2001 From: damienharper Date: Tue, 15 Jan 2019 18:46:42 +0100 Subject: [PATCH 2/3] Fixes indents and ending newlines --- .../1.0/config/packages/dh_doctrine_audit.yaml | 2 +- .../doctrine-audit-bundle/1.0/manifest.json | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml b/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml index 42d49006..4052a1a0 100644 --- a/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml +++ b/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml @@ -7,4 +7,4 @@ dh_doctrine_audit: # MyBundle\Entity\MyAuditedEntity2: # ignored_columns: # properties ignored by the audit process # - createdAt -# - updatedAt \ No newline at end of file +# - updatedAt diff --git a/damienharper/doctrine-audit-bundle/1.0/manifest.json b/damienharper/doctrine-audit-bundle/1.0/manifest.json index ed4b07bd..743ab86d 100644 --- a/damienharper/doctrine-audit-bundle/1.0/manifest.json +++ b/damienharper/doctrine-audit-bundle/1.0/manifest.json @@ -1,8 +1,8 @@ { - "bundles": { - "DH\\DoctrineAuditBundle\\DHDoctrineAuditBundle": ["all"] - }, - "copy-from-recipe": { - "config/": "%CONFIG_DIR%/" - } -} \ No newline at end of file + "bundles": { + "DH\\DoctrineAuditBundle\\DHDoctrineAuditBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +} From 7c361f6fb4bbf6c3474867a0c8679e259ce45b1c Mon Sep 17 00:00:00 2001 From: damienharper Date: Tue, 15 Jan 2019 23:37:48 +0100 Subject: [PATCH 3/3] Wording --- .../1.0/config/packages/dh_doctrine_audit.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml b/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml index 4052a1a0..c8867316 100644 --- a/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml +++ b/damienharper/doctrine-audit-bundle/1.0/config/packages/dh_doctrine_audit.yaml @@ -5,6 +5,6 @@ dh_doctrine_audit: entities: # MyBundle\Entity\MyAuditedEntity1: ~ # all MyAuditedEntity1 properties are audited # MyBundle\Entity\MyAuditedEntity2: -# ignored_columns: # properties ignored by the audit process +# ignored_columns: # MyAuditedEntity2 properties to be ignored by the audit process # - createdAt # - updatedAt