mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-12 15:46:52 +03:00
Update Flex endpoint
This commit is contained in:
@@ -1,20 +1,6 @@
|
||||
{
|
||||
"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": [
|
||||
@@ -34,18 +20,48 @@
|
||||
},
|
||||
"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": ""
|
||||
"contents": [
|
||||
"<?php",
|
||||
"",
|
||||
"namespace App\\Entity;",
|
||||
"",
|
||||
"use Doctrine\\ORM\\Mapping as ORM;",
|
||||
"use MsgPhp\\User\\User as BaseUser;",
|
||||
"use MsgPhp\\User\\UserId;",
|
||||
"",
|
||||
"/**",
|
||||
" * @ORM\\Entity()",
|
||||
" */",
|
||||
"class User extends BaseUser",
|
||||
"{",
|
||||
" /** @ORM\\Id() @ORM\\GeneratedValue() @ORM\\Column(type=\"msgphp_user_id\", length=191) */",
|
||||
" private $id;",
|
||||
"",
|
||||
" public function __construct(UserId $id)",
|
||||
" {",
|
||||
" $this->id = $id;",
|
||||
" }",
|
||||
"",
|
||||
" public function getId(): UserId",
|
||||
" {",
|
||||
" return $this->id;",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
},
|
||||
"config/packages/msgphp_user.yaml": {
|
||||
"contents": "msgphp_user:\n class_mapping:\n MsgPhp\\User\\User: App\\Entity\\User\n",
|
||||
"executable": false,
|
||||
"encoding": ""
|
||||
"contents": [
|
||||
"msgphp_user:",
|
||||
" class_mapping:",
|
||||
" MsgPhp\\User\\User: App\\Entity\\User",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"origin": "msgphp/user-bundle:0.10@github.com/symfony/recipes-contrib:master",
|
||||
"is_contrib": true
|
||||
"ref": "ba0713a124b0716cce44f2989fd31a20945318ba"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user