mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 05:13:13 +03:00
24 lines
513 B
Text
24 lines
513 B
Text
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
use Psr\Log;
|
|
|
|
return [
|
|
|
|
'dependencies' => [
|
|
'lazy_services' => [
|
|
'write_proxy_files' => false,
|
|
],
|
|
|
|
'initializers' => [
|
|
function (ContainerInterface $container, $instance): void {
|
|
if ($instance instanceof Log\LoggerAwareInterface) {
|
|
$instance->setLogger($container->get(Log\LoggerInterface::class));
|
|
}
|
|
},
|
|
],
|
|
],
|
|
|
|
];
|