Reference: Heading "Entities Settings" on the link below https://github.com/doctrine/DoctrineORMModule#entities-settings
tells to register configurations on module (merged) configuration. However in order to use doctrine from more than one modules, if i use same configuration keys like ;
'paths' => [
'path/to/my/entities',
'another/path',
],
'orm_default' => [
'drivers' => [
// ...
will not the other module overwrite the array as values of keys? (yielding the effect as only last module configured to use ORM / Entities).
If the answer is yes then should not we define the configuration in autoload/global.php ?