Kirin 93a3391a21 init 1 ano atrás
..
src 93a3391a21 init 1 ano atrás
LICENSE 93a3391a21 init 1 ano atrás
README.md 93a3391a21 init 1 ano atrás
composer.json 93a3391a21 init 1 ano atrás

README.md

Swoole IDE Helper

Twitter Discord Latest Stable Version License

This package contains IDE help files for Swoole. You may use it in your IDE to provide accurate autocompletion.

Install

You can add this package to your project using Composer:

composer require swoole/ide-helper:@dev
# or you can install a specific version, like:
composer require swoole/ide-helper:~4.4.7

It's better to install this package on only development systems by adding the --dev flag to your Composer commands:

composer require --dev swoole/ide-helper:@dev
# or you can install a specific version, like:
composer require --dev swoole/ide-helper:~4.4.7

Notes

There are two types of worker processes in use when starting a Swoole server:

  1. event worker. All requests (HTTP, WebSocket, TCP, UDP, etc.) are handled by this type of processes. It supports coroutine by default; many I/O operations can run asynchronously in it.
  2. task worker. This type of processes was introduced to handle blocking I/O operations in PHP. Ideally, it should always work synchronously, although it also supports coroutine and allows asynchronous processing (since Swoole v4.2.12+).