shlink/config/autoload/swoole.local.php.dist
Alejandro Celaya af1dd78b2c Fixed typo
2020-01-12 10:32:03 +01:00

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,
],
],
];