swoole / ide-helper
IDE help files for Swoole.
Installs: 4 254 966
Dependents: 1 087
Suggesters: 4
Security: 0
Stars: 492
Watchers: 33
Forks: 69
Open Issues: 1
- dev-master
- 6.0.0-beta
- 6.0.0-alpha
- 5.1.x-dev
- 5.1.5
- 5.1.4
- 5.1.3
- 5.1.2
- 5.1.1
- 5.1.0
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 5.0.0-alpha
- 4.8.x-dev
- 4.8.13
- 4.8.12
- 4.8.11
- 4.8.10
- 4.8.9
- 4.8.8
- 4.8.7
- 4.8.6
- 4.8.5
- 4.8.4
- 4.8.3
- 4.8.2
- 4.8.1
- 4.8.0
- 4.7.1
- 4.7.0
- 4.6.7
- 4.6.6
- 4.6.5
- 4.6.4
- 4.6.3
- 4.6.2
- 4.6.1
- 4.6.0
- 4.6.0-beta
- 4.6.0-alpha
- 4.5.x-dev
- 4.5.11
- 4.5.10
- 4.5.9
- 4.5.8
- 4.5.7
- 4.5.6
- 4.5.5
- 4.5.4
- 4.5.3
- 4.5.3RC1
- 4.5.3-beta
- 4.5.3-alpha
- 4.5.2
- 4.5.1
- 4.5.0
- 4.5.0RC1
- 4.4.x-dev
- 4.4.25
- 4.4.24
- 4.4.23
- 4.4.22
- 4.4.21
- 4.4.20
- 4.4.19
- 4.4.18
- 4.4.17
- 4.4.16
- 4.4.15
- 4.4.14
- 4.4.13
- 4.4.12
- 4.4.8
- 4.4.7
- 4.4.6
- 4.4.5
- 4.4.4
- 4.4.3
- 4.4.0
- 4.3.4
- 4.3.3
- 4.3.2
- 4.3.1
- 4.3.0
This package is auto-updated.
Last update: 2024-11-05 22:06:02 UTC
README
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:~5.0.0 # or composer require --dev swoole/ide-helper:~5.0.0
To use the latest stubs from the master
branch:
composer require swoole/ide-helper:@dev
# or
composer require --dev swoole/ide-helper:@dev
PHP Configuration Settings
swoole.display_errors
: Boolean. DefaultOn
. Display/hide error information from Swoole.swoole.enable_coroutine
: Boolean. DefaultOn
. Turn on/off coroutine support.swoole.enable_library
: Boolean. DefaultOn
. Load the source code from Swoole Library or not.swoole.enable_preemptive_scheduler
: Boolean. DefaultOff
. Enable preemptive scheduler or not. To understand how it works, please check examples under section "CPU-intensive job scheduling" of repository deminy/swoole-by-examples.swoole.unixsock_buffer_size
: Integer (in bytes). By default, it's 256 KiB on Macintosh or FreeBSD, otherwise 8 MiB. The total buffer sizes for the socket connections between the master process and the worker processes in Swoole.swoole.use_shortname
: Boolean. DefaultOn
. Support short names or not. Short names are all the aliases listed in file src/swoole/shortnames.php.
All the directives can be set anywhere except swoole.use_shortname
, which can only be set in php.ini
files.