Add support for opentelemetry (#727)
parent
baadbc2c9f
commit
84b908d3a3
|
@ -74,6 +74,11 @@ We need to monitor new releases at https://github.com/kjdev/php-ext-lz4/tags
|
||||||
The only available versions of the `mosquitto` PHP extension are all alpha/beta.
|
The only available versions of the `mosquitto` PHP extension are all alpha/beta.
|
||||||
We should switch to the stable release once it will be available.
|
We should switch to the stable release once it will be available.
|
||||||
|
|
||||||
|
### opentelemetry
|
||||||
|
|
||||||
|
The only available versions are all beta.
|
||||||
|
We should switch to the stable release once it will be available.
|
||||||
|
|
||||||
## php_trie
|
## php_trie
|
||||||
|
|
||||||
The `php_trie` PHP extension uses the HAT-trie library.
|
The `php_trie` PHP extension uses the HAT-trie library.
|
||||||
|
|
|
@ -63,6 +63,7 @@ odbc 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||||
opcache 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
opcache 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||||
opencensus 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
opencensus 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||||
openswoole 7.2 7.3 7.4 8.0 8.1 8.2
|
openswoole 7.2 7.3 7.4 8.0 8.1 8.2
|
||||||
|
opentelemetry 8.0 8.1 8.2
|
||||||
parallel 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
parallel 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||||
parle 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
parle 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||||
pcntl 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
pcntl 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2
|
||||||
|
|
|
@ -3018,6 +3018,11 @@ installRemoteModule() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
opentelemetry)
|
||||||
|
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