mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-23 23:50:09 -06:00
21 lines
686 B
PHP
21 lines
686 B
PHP
<?php
|
|
use Acelaya\ZsmAnnotatedServices\Factory\V3\AnnotatedFactory;
|
|
use Shlinkio\Shlink\CLI;
|
|
use Symfony\Component\Console;
|
|
|
|
return [
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
Console\Application::class => CLI\Factory\ApplicationFactory::class,
|
|
|
|
CLI\Command\GenerateShortcodeCommand::class => AnnotatedFactory::class,
|
|
CLI\Command\ResolveUrlCommand::class => AnnotatedFactory::class,
|
|
CLI\Command\ListShortcodesCommand::class => AnnotatedFactory::class,
|
|
CLI\Command\GetVisitsCommand::class => AnnotatedFactory::class,
|
|
CLI\Command\ProcessVisitsCommand::class => AnnotatedFactory::class,
|
|
],
|
|
],
|
|
|
|
];
|