swoole.local.php.dist 402 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. use Mezzio\Swoole\HotCodeReload\FileWatcher\InotifyFileWatcher;
  4. use Laminas\ServiceManager\Factory\InvokableFactory;
  5. return [
  6. 'mezzio-swoole' => [
  7. 'hot-code-reload' => [
  8. 'enable' => true,
  9. ],
  10. ],
  11. 'dependencies' => [
  12. 'factories' => [
  13. InotifyFileWatcher::class => InvokableFactory::class,
  14. ],
  15. ],
  16. ];