Add support for operator (#1072)
parent
315e3632be
commit
474b8a13ce
|
@ -89,6 +89,11 @@ We need to monitor new releases at https://github.com/Tessil/hat-trie/releases
|
||||||
The only available versions of the `opencensus` PHP extension are all alpha.
|
The only available versions of the `opencensus` PHP extension are all alpha.
|
||||||
We should switch to the stable release once it will be available.
|
We should switch to the stable release once it will be available.
|
||||||
|
|
||||||
|
### operator
|
||||||
|
|
||||||
|
The only available versions of the `operator` PHP extension are all beta.
|
||||||
|
We should switch to the stable release once it will be available.
|
||||||
|
|
||||||
### parle
|
### parle
|
||||||
|
|
||||||
The only available versions of the `parle` PHP extension are all beta.
|
The only available versions of the `parle` PHP extension are all beta.
|
||||||
|
|
|
@ -71,6 +71,7 @@ opcache 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
||||||
opencensus 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
opencensus 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
|
||||||
openswoole 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
openswoole 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
||||||
opentelemetry 8.0 8.1 8.2 8.3 8.4
|
opentelemetry 8.0 8.1 8.2 8.3 8.4
|
||||||
|
operator 8.2 8.3 8.4
|
||||||
parallel 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
parallel 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
||||||
parle 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
parle 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
||||||
pcntl 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
pcntl 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4
|
||||||
|
|
|
@ -3676,6 +3676,11 @@ installRemoteModule() {
|
||||||
addConfigureOption enable-swoole-curl yes
|
addConfigureOption enable-swoole-curl yes
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
operator)
|
||||||
|
if test -z "$installRemoteModule_version"; then
|
||||||
|
installRemoteModule_version=beta
|
||||||
|
fi
|
||||||
|
;;
|
||||||
parallel)
|
parallel)
|
||||||
if test -z "$installRemoteModule_version"; then
|
if test -z "$installRemoteModule_version"; then
|
||||||
if test $PHP_MAJMIN_VERSION -le 701; then
|
if test $PHP_MAJMIN_VERSION -le 701; then
|
||||||
|
|
Loading…
Reference in New Issue