sebk / openswoole-bundle
Swoole Symfony Bundle
Requires
- php: 8.2.*
- ext-json: *
- ext-openswoole: 22.1.*
- beberlei/assert: ^3.3
- symfony/config: ^5.4|^6.0
- symfony/console: ^5.4|^6.0
- symfony/dependency-injection: ^5.4|^6.0
- symfony/http-foundation: ^5.4|^6.0
- symfony/http-kernel: ^5.4|^6.0
- symfony/process: ^5.4|^6.0
- symfony/proxy-manager-bridge: ^5.4|^6.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.7
- jangregor/phpstan-prophecy: ^1.0
- phpspec/prophecy-phpunit: ^2.0
- phpstan/extension-installer: ^1.0.2
- phpstan/phpstan: ^1.10
- phpstan/phpstan-beberlei-assert: ^1.0
- phpstan/phpstan-doctrine: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/php-code-coverage: ^9.1.0
- phpunit/phpcov: ^8.0
- phpunit/phpunit: ^9.5
- ramsey/uuid: ^4.1
- swoole/ide-helper: ^4.8
- symfony/debug-pack: ^1.0
- symfony/error-handler: ^5.4|^6.0
- symfony/framework-bundle: ^5.4|^6.0
- symfony/messenger: ^5.4|^6.0
- symfony/monolog-bridge: ^5.4|^6.0
- symfony/monolog-bundle: ^3.3
- symfony/profiler-pack: ^1.0
- symfony/runtime: ^6.2
- symfony/var-dumper: ^5.4|^6.0
- symfony/yaml: ^5.4|^6.0
Suggests
- ext-inotify: To enable HMR
- symfony/error-handler: To use Symfony Error Handler
This package is auto-updated.
Last update: 2024-10-18 10:15:39 UTC
README
Symfony integration with Open Swoole to speed up your applications.
Build Matrix
Table of Contents
Quick start guide
-
Make sure you have installed proper Open Swoole PHP Extension and pass other requirements.
-
(optional) Create a new symfony project
composer create-project symfony/skeleton project cd ./project
-
Install bundle in your Symfony application
composer require pixelfederation/swoole-bundle
-
Edit
config/bundles.php
return [ // ...other bundles K911\Swoole\Bridge\Symfony\Bundle\SwooleBundle::class => ['all' => true], ];
-
Run Swoole HTTP Server
bin/console swoole:server:run
-
Enter http://localhost:9501
-
You can now configure bundle according to your needs
Features
-
Built-in API Server
Swoole Bundle API Server allows managing Swoole HTTP Server in real-time.
- Reload worker processes
- Shutdown server
- Access metrics and settings
-
Improved static files serving
Swoole HTTP Server provides a default static files handler, but it lacks supporting many
Content-Types
. To overcome this issue, there is a configurable Advanced Static Files Server. Static files serving remains enabled by default in the development environment. Static files directory defaults to%kernel.project_dir%/public
. To configure your custom mime types check configuration reference (keyswoole.http_server.static.mime_types
). -
Symfony Messenger integration
Available since version:
0.6
Swoole Server Task Transport has been integrated into this bundle to allow easy execution of asynchronous actions. Documentation of this feature is available here.
-
Hot Module Reload (HMR) for development ALPHA
Since Swoole HTTP Server runs in Event Loop and does not flush memory between requests, to keep DX equal with normal servers, this bundle uses code replacement technique, using
inotify
PHP Extension to allow continuous development. It is enabled by default (when the extension is found) and requires no additional configuration. You can turn it off in bundle configuration.Remarks: This feature currently works only on a Linux host machine. It probably won't work with Docker, and it is possible that it works only with configuration:
swoole.http_server.running_mode: process
(default).
Requirements
Current version
- PHP version
>= 7.4
- Open Swoole PHP Extension
>= 4.10.0
- Symfony
>= 5.4.0
Future versions
- PHP version
>= 8.0
- Swoole PHP Extension
>= 4.10.0
- Symfony
>= 6.0
Additional requirements to enable specific features:
- Inotify PHP Extension
^2.0.0
to use Hot Module Reload (HMR)- When using PHP 8, inotify version
^3.0.0
is required
- When using PHP 8, inotify version
Open Swoole
Bundle requires Open Swoole PHP Extension version 4.10.0
or higher. Active bug fixes are provided only for the latest version.
Version check
To check your installed version you can run the following command:
php -r "echo swoole_version() . \PHP_EOL;" # 4.10.0
Installation
Official GitHub repository openswoole/swoole-src contains comprehensive installation guide. The recommended approach is to install it from source.