shlink/module/Rest/config/dependencies.config.php

30 lines
1.1 KiB
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\Authentication\JWTService;
2016-07-19 18:07:59 +03:00
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 [
'dependencies' => [
2016-07-19 18:07:59 +03:00
'factories' => [
JWTService::class => AnnotatedFactory::class,
Service\ApiKeyService::class => AnnotatedFactory::class,
2016-07-19 18:12:50 +03:00
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,
Action\EditTagsAction::class => AnnotatedFactory::class,
2016-07-19 18:07:59 +03:00
Middleware\BodyParserMiddleware::class => AnnotatedFactory::class,
2016-07-19 18:07:59 +03:00
Middleware\CrossDomainMiddleware::class => InvokableFactory::class,
Middleware\CheckAuthenticationMiddleware::class => AnnotatedFactory::class,
],
],
];