Update MsgPhp bundles to v0.1

This commit is contained in:
Roland Franssen
2018-01-19 11:25:15 +01:00
parent ca7e85815c
commit 8138825222
8 changed files with 12 additions and 16 deletions
@@ -0,0 +1,12 @@
<?php
use MsgPhp\User\Entity\User;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return function (ContainerConfigurator $container) {
$container->extension('msgphp_user', [
'class_mapping' => [
User::class => \App\Entity\User\User::class,
],
]);
};
+9
View File
@@ -0,0 +1,9 @@
{
"bundles": {
"MsgPhp\\UserBundle\\MsgPhpUserBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
}
}
@@ -0,0 +1,12 @@
<?php
namespace App\Entity\User;
use MsgPhp\User\Entity\User as BaseUser;
/**
* @final
*/
class User extends BaseUser
{
}