shlink/config/autoload/dependencies.global.php

24 lines
450 B
PHP
Raw Normal View History

2016-04-10 09:38:07 +02:00
<?php
2019-10-05 17:26:10 +02:00
declare(strict_types=1);
2020-01-01 21:11:53 +01:00
use Mezzio\Container;
2016-04-10 09:38:07 +02:00
return [
'dependencies' => [
2018-03-26 18:49:28 +02:00
'delegators' => [
2020-01-01 21:11:53 +01:00
Mezzio\Application::class => [
2018-03-26 18:49:28 +02:00
Container\ApplicationConfigInjectionDelegator::class,
],
],
'lazy_services' => [
'proxies_target_dir' => 'data/proxies',
'proxies_namespace' => 'ShlinkProxy',
'write_proxy_files' => true,
],
2016-04-10 09:38:07 +02:00
],
];