mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-27 08:18:24 +03:00
22 lines
403 B
Text
22 lines
403 B
Text
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Laminas\ServiceManager\Factory\InvokableFactory;
|
|
use Mezzio\Swoole\HotCodeReload\FileWatcher\InotifyFileWatcher;
|
|
|
|
return [
|
|
|
|
'mezzio-swoole' => [
|
|
'hot-code-reload' => [
|
|
'enable' => true,
|
|
],
|
|
],
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
InotifyFileWatcher::class => InvokableFactory::class,
|
|
],
|
|
],
|
|
|
|
];
|