mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-06 23:33:13 +08:00
28 lines
612 B
PHP
28 lines
612 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\EventDispatcher;
|
|
|
|
use Phly\EventDispatcher as Phly;
|
|
use Psr\EventDispatcher as Psr;
|
|
use Shlinkio\Shlink\Common;
|
|
|
|
return [
|
|
|
|
'events' => [
|
|
'regular' => [],
|
|
'async' => [],
|
|
],
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
Phly\EventDispatcher::class => Phly\EventDispatcherFactory::class,
|
|
Psr\ListenerProviderInterface::class => Listener\ListenerProviderFactory::class,
|
|
],
|
|
'aliases' => [
|
|
Psr\EventDispatcherInterface::class => Phly\EventDispatcher::class,
|
|
],
|
|
],
|
|
|
|
];
|