Tom Oram
Tom Oram
Say you have these 2 configs: ``` php $config1 = [ 'di' => [ 'services' => [ 'db' => [ MySQLDB::class, 'arguments' => [ 'username', 'password', 'hostname', ], ], ],...
This package can be a bit of a pain to debug when something goes wrong. My suggestion is to add a `withLogger(LoggerInterface $logger)` method to `Configurator` and log out `DEBUG`...
One nice feature might be to resolve service dependencies by using reflection to look at the types of the arguments. Given the performance hit for using reflection, some form of...