diff --git a/msgphp/eav-bundle/0.2/config/packages/msgphp_eav.php b/msgphp/eav-bundle/0.2/config/packages/msgphp_eav.php new file mode 100644 index 00000000..7af6ad69 --- /dev/null +++ b/msgphp/eav-bundle/0.2/config/packages/msgphp_eav.php @@ -0,0 +1,13 @@ +extension('msgphp_eav', [ + 'class_mapping' => [ + Attribute::class => \App\Entity\Eav\Attribute::class, + AttributeValue::class => \App\Entity\Eav\AttributeValue::class, + ], + ]); +}; diff --git a/msgphp/eav-bundle/0.2/manifest.json b/msgphp/eav-bundle/0.2/manifest.json new file mode 100644 index 00000000..abb50fb4 --- /dev/null +++ b/msgphp/eav-bundle/0.2/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "MsgPhp\\EavBundle\\MsgPhpEavBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} diff --git a/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php b/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php new file mode 100644 index 00000000..4b299f3d --- /dev/null +++ b/msgphp/eav-bundle/0.2/src/Entity/Eav/Attribute.php @@ -0,0 +1,12 @@ +extension('msgphp_user', [ + 'class_mapping' => [ + //PendingUser::class => \App\Entity\User\PendingUser::class, + User::class => \App\Entity\User\User::class, + //UserAttributeValue::class => \App\Entity\User\UserAttributeValue::class, + //UserRole::class => \App\Entity\User\UserRole::class, + //UserSecondaryEmail::class => \App\Entity\User\UserSecondaryEmail::class, + ], + ]); +}; diff --git a/msgphp/user-bundle/0.3/manifest.json b/msgphp/user-bundle/0.3/manifest.json new file mode 100644 index 00000000..dd92cfa4 --- /dev/null +++ b/msgphp/user-bundle/0.3/manifest.json @@ -0,0 +1,9 @@ +{ + "bundles": { + "MsgPhp\\UserBundle\\MsgPhpUserBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/", + "src/": "%SRC_DIR%/" + } +} diff --git a/msgphp/user-bundle/0.3/src/Entity/User/User.php b/msgphp/user-bundle/0.3/src/Entity/User/User.php new file mode 100644 index 00000000..af358bff --- /dev/null +++ b/msgphp/user-bundle/0.3/src/Entity/User/User.php @@ -0,0 +1,12 @@ +