zerai/openswoole-runtime
最新稳定版本:0.1.0
Composer 安装命令:
composer require zerai/openswoole-runtime
包简介
A openswoole runtime component.
README 文档
README
A runtime for OpenSwoole.
If you are new to the Symfony Runtime component, read more in the main readme.
Installation
composer require zerai/openswoole-runtime
Usage
Define the environment variable APP_RUNTIME for your application.
APP_RUNTIME=Zerai\OpenSwoole\Runtime
Pure PHP
// public/index.php use OpenSwoole\Http\Request; use OpenSwoole\Http\Response; require_once dirname(__DIR__).'/vendor/autoload_runtime.php'; return function () { return function (Request $request, Response $response) { $response->header("Content-Type", "text/plain"); $response->end("Hello World\n"); }; };
Symfony
// public/index.php use App\Kernel; require_once dirname(__DIR__).'/vendor/autoload_runtime.php'; return function (array $context) { return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']); };
Using Options
You can define some configurations using Symfony's Runtime APP_RUNTIME_OPTIONS API.
| Option | Description | Default |
|---|---|---|
host |
The host where the server should binds to (precedes SWOOLE_HOST environment variable) |
127.0.0.1 |
port |
The port where the server should be listing (precedes SWOOLE_PORT environment variable) |
8000 |
mode |
Swoole's server mode (precedes SWOOLE_MODE environment variable) |
SWOOLE_PROCESS |
hot_reload |
Enable server hot reload mode (precedes SWOOLE_HOT_RELOAD environment variable). Require server mode as SWOOLE_PROCESS |
0 |
settings |
All Swoole's server settings (https://openswoole.com/docs/modules/swoole-http-server/configuration) | [] |
// public/index.php use App\Kernel; $_SERVER['APP_RUNTIME_OPTIONS'] = [ 'host' => '0.0.0.0', 'port' => 9501, 'mode' => SWOOLE_PROCESS, 'hot-reload' => false, 'settings' => [ \Swoole\Constant::OPTION_WORKER_NUM => 2, \Swoole\Constant::OPTION_ENABLE_STATIC_HANDLER => true, \Swoole\Constant::OPTION_DOCUMENT_ROOT => dirname(__DIR__).'/public' ], ]; require_once dirname(__DIR__).'/vendor/autoload_runtime.php'; return function (array $context) { return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']); };
统计信息
- 总下载量: 11.34k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-12-30