mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
89 lines
3.7 KiB
PHP
89 lines
3.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core;
|
|
|
|
use Doctrine\Common\Cache\Cache;
|
|
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
|
use Mezzio\Router\RouterInterface;
|
|
use Mezzio\Template\TemplateRendererInterface;
|
|
use Psr\EventDispatcher\EventDispatcherInterface;
|
|
use Shlinkio\Shlink\Core\ErrorHandler;
|
|
use Shlinkio\Shlink\Core\Options\NotFoundRedirectOptions;
|
|
|
|
return [
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
ErrorHandler\NotFoundRedirectHandler::class => ConfigAbstractFactory::class,
|
|
ErrorHandler\NotFoundTemplateHandler::class => ConfigAbstractFactory::class,
|
|
|
|
Options\AppOptions::class => ConfigAbstractFactory::class,
|
|
Options\DeleteShortUrlsOptions::class => ConfigAbstractFactory::class,
|
|
Options\NotFoundRedirectOptions::class => ConfigAbstractFactory::class,
|
|
Options\UrlShortenerOptions::class => ConfigAbstractFactory::class,
|
|
|
|
Service\UrlShortener::class => ConfigAbstractFactory::class,
|
|
Service\VisitsTracker::class => ConfigAbstractFactory::class,
|
|
Service\ShortUrlService::class => ConfigAbstractFactory::class,
|
|
Service\VisitService::class => ConfigAbstractFactory::class,
|
|
Service\Tag\TagService::class => ConfigAbstractFactory::class,
|
|
Service\ShortUrl\DeleteShortUrlService::class => ConfigAbstractFactory::class,
|
|
Service\ShortUrl\ShortUrlResolver::class => ConfigAbstractFactory::class,
|
|
|
|
Util\UrlValidator::class => ConfigAbstractFactory::class,
|
|
|
|
Action\RedirectAction::class => ConfigAbstractFactory::class,
|
|
Action\PixelAction::class => ConfigAbstractFactory::class,
|
|
Action\QrCodeAction::class => ConfigAbstractFactory::class,
|
|
|
|
Middleware\QrCodeCacheMiddleware::class => ConfigAbstractFactory::class,
|
|
],
|
|
],
|
|
|
|
ConfigAbstractFactory::class => [
|
|
ErrorHandler\NotFoundRedirectHandler::class => [NotFoundRedirectOptions::class, 'config.router.base_path'],
|
|
ErrorHandler\NotFoundTemplateHandler::class => [TemplateRendererInterface::class],
|
|
|
|
Options\AppOptions::class => ['config.app_options'],
|
|
Options\DeleteShortUrlsOptions::class => ['config.delete_short_urls'],
|
|
Options\NotFoundRedirectOptions::class => ['config.not_found_redirects'],
|
|
Options\UrlShortenerOptions::class => ['config.url_shortener'],
|
|
|
|
Service\UrlShortener::class => [Util\UrlValidator::class, 'em', Options\UrlShortenerOptions::class],
|
|
Service\VisitsTracker::class => ['em', EventDispatcherInterface::class],
|
|
Service\ShortUrlService::class => ['em', Service\ShortUrl\ShortUrlResolver::class],
|
|
Service\VisitService::class => ['em'],
|
|
Service\Tag\TagService::class => ['em'],
|
|
Service\ShortUrl\DeleteShortUrlService::class => [
|
|
'em',
|
|
Options\DeleteShortUrlsOptions::class,
|
|
Service\ShortUrl\ShortUrlResolver::class,
|
|
],
|
|
Service\ShortUrl\ShortUrlResolver::class => ['em'],
|
|
|
|
Util\UrlValidator::class => ['httpClient'],
|
|
|
|
Action\RedirectAction::class => [
|
|
Service\ShortUrl\ShortUrlResolver::class,
|
|
Service\VisitsTracker::class,
|
|
Options\AppOptions::class,
|
|
'Logger_Shlink',
|
|
],
|
|
Action\PixelAction::class => [
|
|
Service\ShortUrl\ShortUrlResolver::class,
|
|
Service\VisitsTracker::class,
|
|
Options\AppOptions::class,
|
|
'Logger_Shlink',
|
|
],
|
|
Action\QrCodeAction::class => [
|
|
RouterInterface::class,
|
|
Service\ShortUrl\ShortUrlResolver::class,
|
|
'Logger_Shlink',
|
|
],
|
|
|
|
Middleware\QrCodeCacheMiddleware::class => [Cache::class],
|
|
],
|
|
|
|
];
|