Reputation: 4541
I would like to add my bundle config.yml to the app/config/config.yml
I found a way via the imports.
I wanted to write this :
imports:
- { resource: parameters.yml }
- { resource: security.yml }
name_of_my_bundle:
- { resource: @MyBundle/Resources/Config/config.yml}
but it does not work...
How should I write it ?
Thank you
Upvotes: 0
Views: 70
Reputation: 31919
Indentation is important in yml. For 'imports', you don't need to specify a bundle name at all.
imports:
- { resource: parameters.yml }
- { resource: security.yml }
- { resource: @MyBundle/Resources/Config/config.yml}
Upvotes: 3