From 7f6528cb72d3a0492e0ee9872866ca9b8f181529 Mon Sep 17 00:00:00 2001 From: jonathan Date: Tue, 3 Mar 2026 02:54:54 +0100 Subject: [PATCH] Add jonathanlight/meta-entity-builder-bundle 1.0 recipe (#1942) * Add jonathanlight/meta-entity-builder-bundle 1.0 recipe * Remove aliases (not supported in contrib repository) * Trigger CI after Packagist v1.0.0 sync --- .../1.0/config/packages/meta_entity_builder.yaml | 15 +++++++++++++++ .../meta-entity-builder-bundle/1.0/manifest.json | 8 ++++++++ 2 files changed, 23 insertions(+) create mode 100644 jonathanlight/meta-entity-builder-bundle/1.0/config/packages/meta_entity_builder.yaml create mode 100644 jonathanlight/meta-entity-builder-bundle/1.0/manifest.json diff --git a/jonathanlight/meta-entity-builder-bundle/1.0/config/packages/meta_entity_builder.yaml b/jonathanlight/meta-entity-builder-bundle/1.0/config/packages/meta_entity_builder.yaml new file mode 100644 index 00000000..6603aad1 --- /dev/null +++ b/jonathanlight/meta-entity-builder-bundle/1.0/config/packages/meta_entity_builder.yaml @@ -0,0 +1,15 @@ +meta_entity_builder: + # Path to YAML schema file defining your entities + schema_path: '%kernel.project_dir%/config/entities.yaml' + + # Directory where generated entities will be saved + entity_directory: '%kernel.project_dir%/src/Entity' + + # Namespace for generated entities + entity_namespace: 'App\Entity' + + # Create backup before updating existing entities + backup_enabled: true + + # Backup directory (relative to project root) + backup_directory: '%kernel.project_dir%/var/backups/entities' diff --git a/jonathanlight/meta-entity-builder-bundle/1.0/manifest.json b/jonathanlight/meta-entity-builder-bundle/1.0/manifest.json new file mode 100644 index 00000000..76f0045e --- /dev/null +++ b/jonathanlight/meta-entity-builder-bundle/1.0/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Meta\\EntityBuilderBundle\\MetaEntityBuilderBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}