mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
21 lines
417 B
Text
21 lines
417 B
Text
<?php
|
|
declare(strict_types=1);
|
|
|
|
use Zend\Expressive\Swoole\HotCodeReload\FileWatcher\InotifyFileWatcher;
|
|
use Zend\ServiceManager\Factory\InvokableFactory;
|
|
|
|
return [
|
|
|
|
'zend-expressive-swoole' => [
|
|
'hot-code-reload' => [
|
|
'enable' => true,
|
|
],
|
|
],
|
|
|
|
'dependencies' => [
|
|
'factories' => [
|
|
InotifyFileWatcher::class => InvokableFactory::class,
|
|
],
|
|
],
|
|
|
|
];
|