2016-07-19 11:01:39 -05:00
|
|
|
<?php
|
|
|
|
use Acelaya\ZsmAnnotatedServices\Factory\V3\AnnotatedFactory;
|
2016-07-27 13:22:50 -05:00
|
|
|
use Shlinkio\Shlink\Core\Action\RedirectAction;
|
2016-07-19 11:01:39 -05:00
|
|
|
use Shlinkio\Shlink\Core\Service;
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
2016-07-31 09:30:05 -05:00
|
|
|
'dependencies' => [
|
2016-07-19 11:01:39 -05:00
|
|
|
'factories' => [
|
|
|
|
// Services
|
|
|
|
Service\UrlShortener::class => AnnotatedFactory::class,
|
|
|
|
Service\VisitsTracker::class => AnnotatedFactory::class,
|
|
|
|
Service\ShortUrlService::class => AnnotatedFactory::class,
|
2016-07-20 12:00:23 -05:00
|
|
|
Service\VisitService::class => AnnotatedFactory::class,
|
2016-07-19 11:01:39 -05:00
|
|
|
|
|
|
|
// Middleware
|
2016-07-27 13:22:50 -05:00
|
|
|
RedirectAction::class => AnnotatedFactory::class,
|
2016-07-19 11:01:39 -05:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|