Composer 扩展包用于 swoole 开发,修改代码后自动重启服务

github地址

swooleAutoRestart

.

说明

此扩展包用于,swoole开发,修改代码后自动重启服务

依赖PHP扩展

  • swoole
    pecl install swoole
  • inotify,此扩展为php文件监听扩展,安装命令如下
    pecl install inotify

安装

$ composer require phpdic/swoole-auto-restart -vvv

用法

1.在你的项目根目建立一个php脚本,如:swoole-auto-start.php,内容如下:


require './vendor/autoload.php';

$a = new \Phpdic\SwooleAutoRestart\swooleAutoRestart(__DIR__, '/bin/echo ok');
$a->listen();

2.执行你刚刚创建的这个脚本

/usr/bin/php swoole-auto-start.php

说明

swooleAutoRestart构造函数注解

 /**
     * swooleAutoRestart constructor.
     * @param string $rootDir 需要监听的项目根目录
     * @param string $startServerCommand 启动swoole服务器的命令
     * @param array $notCheckDir 配置不需要监听的目录
     * @param int $restartInterval 重启间隔
     * @param bool $showDetail 是否展示详细信息
     */
    public function __construct(string $rootDir,string $startServerCommand,array $notCheckDir=[],$restartInterval=1000,$showDetail=false)
    {

notCheckDir参数可以配置不需要监听的目录,例如,我的项目是laravel框架,设置如下:

$notCheckDir=['/bootstrap','/storage','/tests']

Contributing

You can contribute in one of three ways:

  1. File bug reports using the issue tracker.
  2. Answer questions or fix bugs on the issue tracker.
  3. Contribute new features or update the wiki.

The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.

License

MIT

《L01 基础入门》
我们将带你从零开发一个项目并部署到线上,本课程教授 Web 开发中专业、实用的技能,如 Git 工作流、Laravel Mix 前端工作流等。
《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
讨论数量: 1

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!