Better services organisation in Symfony🔗
In bigger application your services.yml
will became messy, so with this change you will be able to separate your services configuration into multiple files.
You will need to add this code at the end for the method configureContainer
in your app Kernel
:
For Symfony 4.*
1 2 3 |
|
For Symfony 5.*
1 2 |
|
With these changes, services configurations will be located in the files config/services/*.php
and config/services/{prod,dev,test}/*.php
.
One advantage of having multiple services configurations files, is that you can symlink them so if you need the same services in different envs (but not in test env for instance) you don't need to duplicate the file content.
Last update: December 20, 2024