swoolefony/swoole-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

swoolefony/swoole-bundle

Composer 安装命令:

composer require swoolefony/swoole-bundle

包简介

A Swoole bundle for Symfony.

README 文档

README

Swoolefony is a Swoole bundle for Symfony. It provides integration via a runtime class and management via commands.

Installation

Install it using composer:

composer require swoolefony/swoole-bundle

Runtime Configuration

Add the runtime class to your composer.json in the extra section:

"extra": {
    "runtime": {
        "class": "Swoolefony\\SwooleBundle\\Runtime\\SwooleRuntime"
    }
}

With the runtime in place, the default public/index.php would be the entry point for start the application. Once it is run, the Swoole server is started based on the provided configuration.

Swoole Configuration

The Swoole server mode, IP, and port can be controlled via environment variables:

Enviornment Variable Description Default Value
SWOOLEFONY_MODE The server mode to run Swoole in (e.g. http, websocket) http
SWOOLEFONY_IP The IP address to bind the Swoole server to. 0.0.0.0
SWOOLEFONY_PORT The port to for the Swoole server to listen on. 80
SWOOLEFONY_SSL_CERT_FILE The path to the SSL cert file to use. Not set.
SWOOLEFONY_SSL_KEY_FILE The path to the SSL key file to use. Not set.
SWOOLEFONY_SSL_ALLOW_SELFSIGNED Whether or not to allow self-signed certificates (0 or 1). 0
SWOOLEFONY_SSL_PROTOCOLS The SSL / TLS protcols to allow in a comma separated list: tls1.1, tls1.2, tls1.3 tls1.3,tls1.2
SWOOLEFONY_DAEMONIZE Whether the server should run as a daemon (0 or 1). If so, the entry point returns immediately. 0

The runtime class will look for those environment variables and use them if they exist. Otherwise it will fallback to the default values that are listed.

Request Attributes

The following attributes are available on the request class (Request->attributes) when it is processed by Symfony:

Attribute Name Description Value Type
swoolefony.id The Swoole specific request ID (fd). int
swoolefony.mode The server mode Swoole is running in. Either http or websocket string

Container Services

The following container services are available:

Service Name Description Class
swoolefony.server The Swoole server instance running for this request. \Swoolefony\SwooleBundle\Server\ServerInterface

统计信息

  • 总下载量: 35
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-07-17