2019-07-13 13:04:21 +03:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Shlinkio\Shlink\Core;
|
|
|
|
|
2019-07-20 12:21:00 +03:00
|
|
|
use Shlinkio\Shlink\CLI\Util\GeolocationDbUpdater;
|
2019-08-10 14:56:06 +03:00
|
|
|
use Shlinkio\Shlink\IpGeolocation\Resolver\IpLocationResolverInterface;
|
2019-07-13 13:04:21 +03:00
|
|
|
use Zend\ServiceManager\AbstractFactory\ConfigAbstractFactory;
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
'events' => [
|
2019-07-18 20:07:07 +03:00
|
|
|
'regular' => [],
|
|
|
|
'async' => [
|
|
|
|
EventDispatcher\ShortUrlVisited::class => [
|
|
|
|
EventDispatcher\LocateShortUrlVisit::class,
|
|
|
|
],
|
2019-07-13 13:04:21 +03:00
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
'dependencies' => [
|
2019-07-13 16:43:54 +03:00
|
|
|
'factories' => [
|
|
|
|
EventDispatcher\LocateShortUrlVisit::class => ConfigAbstractFactory::class,
|
|
|
|
],
|
2019-07-13 13:04:21 +03:00
|
|
|
],
|
|
|
|
|
|
|
|
ConfigAbstractFactory::class => [
|
2019-07-20 12:21:00 +03:00
|
|
|
EventDispatcher\LocateShortUrlVisit::class => [
|
|
|
|
IpLocationResolverInterface::class,
|
|
|
|
'em',
|
|
|
|
'Logger_Shlink',
|
|
|
|
GeolocationDbUpdater::class,
|
|
|
|
],
|
2019-07-13 13:04:21 +03:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|