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%/" + } +}