uniondrug / phar
builder PHAR package and start with swoole
Installs: 7 766
Dependents: 6
Suggesters: 0
Security: 0
Stars: 3
Watchers: 7
Forks: 0
Open Issues: 0
Requires
- guzzlehttp/guzzle: ^6.3
- dev-development
- 2.0.2
- 2.0.1
- 2.0.0
- 1.4.44
- 1.4.43
- 1.4.42
- 1.4.41
- 1.4.40
- 1.4.39
- 1.4.38
- 1.4.35
- 1.4.34
- 1.4.33
- 1.4.32
- 1.4.31
- 1.4.30
- 1.4.29
- 1.4.28
- 1.4.27
- 1.4.26
- 1.4.25
- 1.4.23
- 1.4.22
- 1.4.21
- 1.4.20
- 1.4.17
- 1.4.16
- 1.4.15
- 1.4.14
- 1.4.13
- 1.4.12
- 1.4.10
- 1.4.9
- 1.4.8
- 1.4.7
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.1
- 1.3.0
- 1.2.14
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 0.0.1
- dev-x2.0
- dev-x1.4
- dev-develop
- dev-master
This package is auto-updated.
Last update: 2024-10-24 10:38:05 UTC
README
基于
uniondrug/sketch
模板构建的项目, 可平滑切换到PHAR
+Swoole
运行模式。
- 安装依赖 - 在项目添加
uniondrug/phar
依赖 - 添加入口 - 让项目支持
Command
入口 - 项目打包 - 将项目打成
PHAR
包 - 启动项目 - 以
PHAR
方式启动项目 - 退出服务
- 项目部署 - 在
development
、testing
、release
、production
环境下的部署规范 - 注意事项 - 构建PHAR包时注意事项
- 项目名称与版本
- 启动IP与端口
- 服务参数
安装依赖
请在项目根目录下的
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
包
- 语法
php console phar -h
- 示例
php console phar php console phar -e production php console phar -e production --tag version php console phar -e production --tag version --name package
启动项目
- 语法
php package-version.phar start -h
- 示例
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
退出服务
- 语法
php package-version.phar stop -h
- 示例
php package-version.phar stop -l php package-version.phar stop -l --kill php package-version.phar stop -l --force-kill