shlink/module/Core/config/dependencies.config.php

28 lines
901 B
PHP
Raw Normal View History

2016-07-19 19:01:39 +03:00
<?php
use Acelaya\ZsmAnnotatedServices\Factory\V3\AnnotatedFactory;
2016-08-09 11:24:42 +03:00
use Shlinkio\Shlink\Core\Action;
use Shlinkio\Shlink\Core\Middleware;
2016-08-07 15:44:33 +03:00
use Shlinkio\Shlink\Core\Options\AppOptions;
2016-07-19 19:01:39 +03:00
use Shlinkio\Shlink\Core\Service;
return [
'dependencies' => [
2016-07-19 19:01:39 +03:00
'factories' => [
2016-08-07 15:44:33 +03:00
AppOptions::class => AnnotatedFactory::class,
2016-07-19 19:01:39 +03:00
// Services
Service\UrlShortener::class => AnnotatedFactory::class,
Service\VisitsTracker::class => AnnotatedFactory::class,
Service\ShortUrlService::class => AnnotatedFactory::class,
Service\VisitService::class => AnnotatedFactory::class,
2016-07-19 19:01:39 +03:00
// Middleware
2016-08-09 11:24:42 +03:00
Action\RedirectAction::class => AnnotatedFactory::class,
Action\QrCodeAction::class => AnnotatedFactory::class,
Middleware\QrCodeCacheMiddleware::class => AnnotatedFactory::class,
2016-07-19 19:01:39 +03:00
],
],
];