Tom Oram

Results 3 issues of Tom Oram

Say you have these 2 configs: ``` php $config1 = [ 'di' => [ 'services' => [ 'db' => [ MySQLDB::class, 'arguments' => [ 'username', 'password', 'hostname', ], ], ],...

bug

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`...

enhancement

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...

enhancement