mirror of
https://github.com/shlinkio/shlink.git
synced 2025-04-05 00:05:20 +03:00
20 lines
429 B
PHP
20 lines
429 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink;
|
|
|
|
use Phly\EventDispatcher as Phly;
|
|
use Psr\EventDispatcher as Psr;
|
|
|
|
return [
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
Psr\ListenerProviderInterface::class => Common\EventDispatcher\ListenerProviderFactory::class,
|
|
],
|
|
'aliases' => [
|
|
Psr\EventDispatcherInterface::class => Phly\EventDispatcher::class,
|
|
],
|
|
],
|
|
|
|
];
|