Files
symfony-flex-recipes-contrib/msgphp.user-bundle.0.10.json
T
github-action botandgithub-action bot 7d78e147a4 Update Flex endpoint
2021-09-20 16:37:35 +00:00

51 lines
2.3 KiB
JSON

{
"locks": {
"msgphp/user-bundle": {
"version": "0.10",
"recipe": {
"repo": "0.10",
"branch": "master",
"version": "0.10",
"ref": "ba0713a124b0716cce44f2989fd31a20945318ba"
}
}
},
"manifests": {
"msgphp/user-bundle": {
"repository": "github.com/symfony/recipes-contrib",
"package": "msgphp/user-bundle",
"version": "0.10",
"manifest": {
"bundles": {
"MsgPhp\\UserBundle\\MsgPhpUserBundle": [
"all"
]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"src/": "%SRC_DIR%/"
},
"post-install-output": [
" * Install the Symfony Maker Bundle using <info>composer require maker --dev</>. It's required for the next step.",
"",
" * Run <info>bin/console make:user:msgphp</>. It will guide you through the basic setup by asking a series of",
" questions and generates the minimal application source files needed."
]
},
"files": {
"src/Entity/User.php": {
"contents": "<?php\n\nnamespace App\\Entity;\n\nuse Doctrine\\ORM\\Mapping as ORM;\nuse MsgPhp\\User\\User as BaseUser;\nuse MsgPhp\\User\\UserId;\n\n/**\n * @ORM\\Entity()\n */\nclass User extends BaseUser\n{\n /** @ORM\\Id() @ORM\\GeneratedValue() @ORM\\Column(type=\"msgphp_user_id\", length=191) */\n private $id;\n\n public function __construct(UserId $id)\n {\n $this->id = $id;\n }\n\n public function getId(): UserId\n {\n return $this->id;\n }\n}\n",
"executable": false,
"encoding": ""
},
"config/packages/msgphp_user.yaml": {
"contents": "msgphp_user:\n class_mapping:\n MsgPhp\\User\\User: App\\Entity\\User\n",
"executable": false,
"encoding": ""
}
},
"origin": "msgphp/user-bundle:0.10@github.com/symfony/recipes-contrib:master",
"is_contrib": true
}
}
}