mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 07:36:34 +03:00
46 lines
1.9 KiB
JSON
46 lines
1.9 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%/"
|
|
}
|
|
},
|
|
"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",
|
|
"not_installable": false,
|
|
"is_contrib": true
|
|
}
|
|
}
|
|
} |