mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-18 09:02:04 +03:00
27 lines
612 B
PHP
27 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,
|
|
],
|
|
],
|
|
|
|
];
|