mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-05 21:53:22 -06:00
27 lines
980 B
PHP
27 lines
980 B
PHP
<?php
|
|
use Acelaya\ZsmAnnotatedServices\Factory\V3\AnnotatedFactory;
|
|
use Shlinkio\Shlink\Rest\Action;
|
|
use Shlinkio\Shlink\Rest\Middleware;
|
|
use Shlinkio\Shlink\Rest\Service;
|
|
use Zend\ServiceManager\Factory\InvokableFactory;
|
|
|
|
return [
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
Service\RestTokenService::class => AnnotatedFactory::class,
|
|
Service\ApiKeyService::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,
|
|
|
|
Middleware\CrossDomainMiddleware::class => InvokableFactory::class,
|
|
Middleware\CheckAuthenticationMiddleware::class => AnnotatedFactory::class,
|
|
],
|
|
],
|
|
|
|
];
|