shlink/module/Rest/config/services.config.php

26 lines
907 B
PHP
Raw Normal View History

2016-07-19 18:07:59 +03:00
<?php
use Acelaya\ZsmAnnotatedServices\Factory\V3\AnnotatedFactory;
use Shlinkio\Shlink\Rest\Action;
use Shlinkio\Shlink\Rest\Middleware;
2016-07-19 18:12:50 +03:00
use Shlinkio\Shlink\Rest\Service;
2016-07-19 18:07:59 +03:00
use Zend\ServiceManager\Factory\InvokableFactory;
return [
'services' => [
'factories' => [
2016-07-19 18:12:50 +03:00
Service\RestTokenService::class => AnnotatedFactory::class,
Action\AuthenticateAction::class => AnnotatedFactory::class,
Action\CreateShortcodeAction::class => AnnotatedFactory::class,
Action\ResolveUrlAction::class => AnnotatedFactory::class,
Action\GetVisitsAction::class => AnnotatedFactory::class,
Action\ListShortcodesAction::class => AnnotatedFactory::class,
2016-07-19 18:07:59 +03:00
Middleware\CrossDomainMiddleware::class => InvokableFactory::class,
Middleware\CheckAuthenticationMiddleware::class => AnnotatedFactory::class,
],
],
];