mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 09:03:07 +03:00
19 lines
602 B
PHP
19 lines
602 B
PHP
<?php
|
|
use Acelaya\ZsmAnnotatedServices\Factory\V3\AnnotatedFactory;
|
|
use Shlinkio\Shlink\CLI;
|
|
use Symfony\Component\Console;
|
|
|
|
return [
|
|
|
|
'services' => [
|
|
'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,
|
|
],
|
|
],
|
|
|
|
];
|