Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions symfony/maker-bundle/1.61/config/packages/maker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
when@dev:
maker:
# tell MakerBundle that all of your classes live in an
# Acme namespace, instead of the default App
# (e.g. Acme\Entity\Article, Acme\Command\MyCommand, etc)
root_namespace: 'App'

# Tell MakerBundle to make all non-entity classes it generates, "final".
generate_final_classes: true

# Tell MakerBundle to make all entities it generates, "final".
generate_final_entities: false
9 changes: 9 additions & 0 deletions symfony/maker-bundle/1.61/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"bundles": {
"Symfony\\Bundle\\MakerBundle\\MakerBundle": ["dev"]
},
"aliases": ["maker", "generator", "make"],
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}
Loading