Files
symfony-flex-recipes/doctrine.doctrine-fixtures-bundle.3.0.json
T
github-action botandgithub-action bot d66972e1ac Update Flex endpoint
2021-09-23 15:02:48 +00:00

44 lines
1.5 KiB
JSON

{
"manifests": {
"doctrine/doctrine-fixtures-bundle": {
"manifest": {
"bundles": {
"Doctrine\\Bundle\\FixturesBundle\\DoctrineFixturesBundle": [
"dev",
"test"
]
},
"copy-from-recipe": {
"src/": "%SRC_DIR%/"
}
},
"files": {
"src/DataFixtures/AppFixtures.php": {
"contents": [
"<?php",
"",
"namespace App\\DataFixtures;",
"",
"use Doctrine\\Bundle\\FixturesBundle\\Fixture;",
"use Doctrine\\Persistence\\ObjectManager;",
"",
"class AppFixtures extends Fixture",
"{",
" public function load(ObjectManager $manager)",
" {",
" // $product = new Product();",
" // $manager->persist($product);",
"",
" $manager->flush();",
" }",
"}",
""
],
"executable": false
}
},
"ref": "e5b542d4ef47d8a003c91beb35650c76907f7e53"
}
}
}