container-configurator icon indicating copy to clipboard operation
container-configurator copied to clipboard

Configure your application and the Dependency Injection Container (DIC) via config arrays or config files.

Results 3 container-configurator issues
Sort by recently updated
recently updated
newest added

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