diff --git a/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml b/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml new file mode 100644 index 00000000..667409e1 --- /dev/null +++ b/jonathankablan/fast-entity-bundle/2.0/config/packages/fast_entity.yaml @@ -0,0 +1,19 @@ +#fast_entity: +# tables: +# - { name: 'admin' } +# - { name: 'formation' } +# schema: +# # User +# - { entity: 'admin', property: 'username', type: 'string', length: 255, nullable: true } +# - { entity: 'admin', property: 'password', type: 'string', length: 255, nullable: true } +# - { entity: 'admin', property: 'email', type: 'string', length: 255, nullable: true } +# - { entity: 'admin', property: 'active', type: 'boolean', nullable: true } +# - { entity: 'admin', property: 'created', type: 'datetime', nullable: true } +# - { entity: 'admin', property: 'updated', type: 'datetime', nullable: true } +# # Conference +# - { entity: 'formation', property: 'location', type: 'string', length: 255, nullable: true } +# - { entity: 'formation', property: 'price', type: 'integer', length: 11, nullable: true } +# - { entity: 'formation', property: 'created', type: 'datetime', nullable: true } +# - { entity: 'formation', property: 'updated', type: 'datetime', nullable: true } +# relations: +# - { entityTo: 'admin', entityFrom: 'formation', relation: 'OneToOne' } diff --git a/jonathankablan/fast-entity-bundle/2.0/manifest.json b/jonathankablan/fast-entity-bundle/2.0/manifest.json new file mode 100644 index 00000000..2d6c3f36 --- /dev/null +++ b/jonathankablan/fast-entity-bundle/2.0/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "Jonathankablan\\Bundle\\FastEntityBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +}