mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-19 01:22:38 +03: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,
|
||
|
],
|
||
|
],
|
||
|
|
||
|
];
|