There is no license information available for the latest version (2.0.2) of this package.

builder PHAR package and start with swoole

2.0.2 2022-04-24 03:02 UTC

README

基于uniondrug/sketch模板构建的项目, 可平滑切换到PHAR+Swoole运行模式。

  1. 安装依赖 - 在项目添加uniondrug/phar依赖
  2. 添加入口 - 让项目支持Command入口
  3. 项目打包 - 将项目打成PHAR
  4. 启动项目 - 以PHAR方式启动项目
  5. 退出服务
  6. 项目部署 - 在developmenttestingreleaseproduction环境下的部署规范
  7. 注意事项 - 构建PHAR包时注意事项
    1. 项目名称与版本
    2. 启动IP与端口
    3. 服务参数

安装依赖

请在项目根目录下的composer.json文件加添加uniondrug/phar扩展;效果如下

{
    ...
    "require" : {
        ...
        "uniondrug/console" : "^2.2",
        "uniondrug/phar" : "^1.0"
    },
    ...
}

添加入口

创建app/Commands/PharCommand.php文件, 完整代码如下

<?php
/**
 * @author wsfuyibing <websearch@163.com>
 * @date   2019-01-24
 */
namespace App\Commands;

/**
 * 构建PHAR入口
 * @package App\Commands
 */
class PharCommand extends \Uniondrug\Phar\Commands\PharCommand
{
}

项目打包

将项目构建成PHAR

  1. 语法
    php console phar -h
  2. 示例
    php console phar
    php console phar -e production
    php console phar -e production --tag version
    php console phar -e production --tag version --name package

启动项目

  1. 语法
    php package-version.phar start -h
  2. 示例
    php package-version.phar start -h 
    php package-version.phar start -e production
    php package-version.phar start -e production -d
    php package-version.phar start -e production -d --consul-register 127.0.0.1:8500
    php package-version.phar start -e production --log-stdout

退出服务

  1. 语法
    php package-version.phar stop -h
  2. 示例
    php package-version.phar stop -l 
    php package-version.phar stop -l --kill 
    php package-version.phar stop -l --force-kill