mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 13:23:33 +03:00
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Laminas\ServiceManager\Proxy\LazyServiceFactory;
|
|
use Shlinkio\Shlink\Common\Mercure\LcobucciJwtProvider;
|
|
use Shlinkio\Shlink\Core\Config\EnvVars;
|
|
use Symfony\Component\Mercure\Hub;
|
|
use Symfony\Component\Mercure\HubInterface;
|
|
|
|
return (static function (): array {
|
|
$publicUrl = EnvVars::MERCURE_PUBLIC_HUB_URL->loadFromEnv();
|
|
|
|
return [
|
|
|
|
'mercure' => [
|
|
'public_hub_url' => $publicUrl,
|
|
'internal_hub_url' => EnvVars::MERCURE_INTERNAL_HUB_URL->loadFromEnv($publicUrl),
|
|
'jwt_secret' => EnvVars::MERCURE_JWT_SECRET->loadFromEnv(),
|
|
'jwt_issuer' => 'Shlink',
|
|
],
|
|
|
|
'dependencies' => [
|
|
'delegators' => [
|
|
LcobucciJwtProvider::class => [
|
|
LazyServiceFactory::class,
|
|
],
|
|
Hub::class => [
|
|
LazyServiceFactory::class,
|
|
],
|
|
],
|
|
'lazy_services' => [
|
|
'class_map' => [
|
|
LcobucciJwtProvider::class => LcobucciJwtProvider::class,
|
|
Hub::class => HubInterface::class,
|
|
],
|
|
],
|
|
],
|
|
|
|
];
|
|
})();
|