shlink/config/autoload/swoole.local.php.dist

23 lines
403 B
Text
Raw Normal View History

<?php
declare(strict_types=1);
2020-01-01 23:11:53 +03:00
use Laminas\ServiceManager\Factory\InvokableFactory;
use Mezzio\Swoole\HotCodeReload\FileWatcher\InotifyFileWatcher;
return [
2020-01-12 12:32:03 +03:00
'mezzio-swoole' => [
'hot-code-reload' => [
'enable' => true,
],
],
'dependencies' => [
'factories' => [
InotifyFileWatcher::class => InvokableFactory::class,
],
],
];