This package contains IDE help files for Swoole. You may use it in your IDE to provide accurate autocompletion.
You may add this package to your project using Composer:
composer require swoole/ide-helper:@dev
# or you may install a specific version, like:
composer require swoole/ide-helper:~4.3.3It'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 may install a specific version, like:
composer require --dev swoole/ide-helper:~4.3.3Have Docker running first, then use script ./bin/generator.sh to generate IDE help files and put them under folder
output/. This script accepts one parameter only, which should be a branch name, a tag or a commit number of repository
https://github.com/swoole/swoole-src. e.g.,
./bin/generator.sh master # "master" is a branch name.
./bin/generator.sh v4.3.3 # "v4.3.3" is a tag.
./bin/generator.sh 49d44ca # "49d44ca" is a Git commit number.