mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
29 lines
598 B
PHP
29 lines
598 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use GuzzleHttp\Client;
|
|
use Mezzio\Container;
|
|
use Psr\Http\Client\ClientInterface;
|
|
|
|
return [
|
|
|
|
'dependencies' => [
|
|
'delegators' => [
|
|
Mezzio\Application::class => [
|
|
Container\ApplicationConfigInjectionDelegator::class,
|
|
],
|
|
],
|
|
|
|
'aliases' => [
|
|
ClientInterface::class => Client::class,
|
|
],
|
|
|
|
'lazy_services' => [
|
|
'proxies_target_dir' => 'data/proxies',
|
|
'proxies_namespace' => 'ShlinkProxy',
|
|
'write_proxy_files' => true,
|
|
],
|
|
],
|
|
|
|
];
|