From 9bc7742a4ae431b206bf5c15424dd61c35e41021 Mon Sep 17 00:00:00 2001 From: Bref Bot Date: Fri, 6 Mar 2026 13:36:00 +0000 Subject: [PATCH 1/7] Adding tag 3.0.3 --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index a67aa92e..99e259ce 100644 --- a/config.json +++ b/config.json @@ -2,6 +2,6 @@ "latest_versions": { "v0": "0.12.4", "v1": "1.8.5", - "v3": "3.0.2" + "v3": "3.0.3" } } \ No newline at end of file From ed502db5ec737c696b3d3d6e95aeaacc52e887d5 Mon Sep 17 00:00:00 2001 From: Scott Morken Date: Fri, 6 Mar 2026 12:00:07 -0700 Subject: [PATCH 2/7] Add oci8 layer for Bref 3 --- Readme.md | 2 +- layers/oci8/Dockerfile | 84 ++++++++++++++++++---------------- layers/oci8/config.json | 3 ++ layers/oci8/docker-compose.yml | 7 +++ layers/oci8/test.php | 39 +++++++++++++++- 5 files changed, 94 insertions(+), 41 deletions(-) create mode 100644 layers/oci8/docker-compose.yml diff --git a/Readme.md b/Readme.md index bc6dc3a8..1293785f 100644 --- a/Readme.md +++ b/Readme.md @@ -82,7 +82,7 @@ functions: | ODBC Snowflake | `${bref-extra:odbc-snowflake-php-81}` | | OpenSwoole | `${bref-extra:openswoole-php-81}` | | OpenTelemetry | `${bref-extra:opentelemetry-php-81}` | -| Oracle | `${bref-extra:oci8-php-80}` | +| Oracle | `${bref-extra:oci8-php-83}` | | Pcov | `${bref-extra:pcov-php-81}` | | PostgreSQL | `${bref-extra:pgsql-php-81}` | | RdKafka | `${bref-extra:rdkafka-php-81}` | diff --git a/layers/oci8/Dockerfile b/layers/oci8/Dockerfile index a616f5d0..32656ef0 100644 --- a/layers/oci8/Dockerfile +++ b/layers/oci8/Dockerfile @@ -1,48 +1,54 @@ ARG PHP_VERSION ARG BREF_VERSION -FROM bref/build-php-$PHP_VERSION:$BREF_VERSION AS ext +ARG OL_VERSION=8 +ARG IC_VERSION=21 +# Oracle Instant Client image +FROM public.ecr.aws/docker/library/oraclelinux:$OL_VERSION AS oracle_base +ARG OL_VERSION +RUN dnf -y install oracle-instantclient-release-el${OL_VERSION} + +FROM oracle_base AS oracle_devel +RUN dnf -y install oracle-instantclient-devel && \ + mkdir -p /opt/oracle && \ + cp -r /usr/lib/oracle/*/client64/lib/* /opt/oracle/ && \ + cp -r /usr/include/oracle/*/client64/* /opt/oracle/ + +FROM oracle_base AS oracle_client +RUN dnf -y install oracle-instantclient-basiclite && \ + mkdir -p /opt/oracle && \ + cp -r /usr/lib/oracle/*/client64/lib/* /opt/oracle/ + +# Redeclare for scope ARG PHP_VERSION - -# Specify library path -ENV LD_LIBRARY_PATH=/usr/lib:/usr/lib64:$LD_LIBRARY_PATH -ENV ORACLE_BUILD_DIR=${BUILD_DIR}/oracle - -# Install libaio -RUN dnf install -y libaio - -# Instant Client newer than 21.x requires glibc 2.28+ which is not available on Amazon Linux 2 -RUN mkdir -p ${ORACLE_BUILD_DIR}; \ - cd ${ORACLE_BUILD_DIR}; \ - curl -o oci-basic.zip https://download.oracle.com/otn_software/linux/instantclient/2116000/instantclient-basiclite-linux.x64-21.16.0.0.0dbru.zip && \ - unzip oci-basic.zip -d src -x META-INF/* && \ - curl -o oci-sdk.zip https://download.oracle.com/otn_software/linux/instantclient/2116000/instantclient-sdk-linux.x64-21.16.0.0.0dbru.zip && \ - unzip oci-sdk.zip -d src -x META-INF/* - -RUN if [ "$PHP_VERSION" = "80" ] ; then \ - echo "instantclient,${ORACLE_BUILD_DIR}/src/instantclient_21_16" | pecl install oci8-3.0.1; \ - elif [ "$PHP_VERSION" = "81" ] ; then \ - echo "instantclient,${ORACLE_BUILD_DIR}/src/instantclient_21_16" | pecl install oci8-3.2.1; \ - else \ - echo "instantclient,${ORACLE_BUILD_DIR}/src/instantclient_21_16" | pecl install oci8; \ - fi - -RUN cp /usr/lib64/libaio.so.1 /tmp/libaio.so.1 -RUN cp ${ORACLE_BUILD_DIR}/src/instantclient_21_16/libclntshcore.so.21.1 /tmp/libclntshcore.so.21.1 -RUN cp ${ORACLE_BUILD_DIR}/src/instantclient_21_16/libclntsh.so.21.1 /tmp/libclntsh.so.21.1 -RUN cp ${ORACLE_BUILD_DIR}/src/instantclient_21_16/libocci.so.21.1 /tmp/libocci.so.21.1 -RUN cp ${ORACLE_BUILD_DIR}/src/instantclient_21_16/libnnz21.so /tmp/libnnz21.so -RUN cp ${ORACLE_BUILD_DIR}/src/instantclient_21_16/libociicus.so /tmp/libociicus.so -RUN cp `php-config --extension-dir`/oci8.so /tmp/oci8.so -RUN echo 'extension=oci8.so' > /tmp/ext.ini - -RUN php /bref/lib-copy/copy-dependencies.php /tmp/oci8.so /tmp/extension-libs -# Missing these two -RUN cp /tmp/libocci.so.21.1 /tmp/extension-libs -RUN cp /tmp/libociicus.so /tmp/extension-libs +ARG BREF_VERSION +FROM bref/build-php-$PHP_VERSION:$BREF_VERSION AS ext +ARG IC_VERSION +ENV ORACLE_DEVEL_DIR=/opt/oracle-devel +ENV ORACLE_CLIENT_DIR=/opt/oracle-client +ENV LD_LIBRARY_PATH=/usr/lib:/usr/lib64:$ORACLE_CLIENT_DIR:$ORACLE_DEVEL_DIR:$LD_LIBRARY_PATH + +COPY --from=oracle_devel /usr/lib64/libaio.so.1 /usr/lib64/libaio.so.1 +COPY --from=oracle_devel /opt/oracle $ORACLE_DEVEL_DIR +COPY --from=oracle_client /opt/oracle $ORACLE_CLIENT_DIR + +RUN echo "instantclient,${ORACLE_DEVEL_DIR}" | pecl install oci8 + +RUN cp /usr/lib64/libaio.so.1 /tmp/libaio.so.1 && \ + cp ${ORACLE_CLIENT_DIR}/libclntshcore.so.${IC_VERSION}.1 /tmp && \ + cp ${ORACLE_CLIENT_DIR}/libclntsh.so.${IC_VERSION}.1 /tmp && \ + cp ${ORACLE_CLIENT_DIR}/libnnz${IC_VERSION}.so /tmp && \ + cp ${ORACLE_CLIENT_DIR}/libocci.so.${IC_VERSION}.1 /tmp && \ + cp ${ORACLE_CLIENT_DIR}/libociicus.so /tmp && \ + cp `php-config --extension-dir`/oci8.so /tmp/oci8.so && \ + echo 'extension=oci8.so' > /tmp/ext.ini + +RUN php /bref/lib-copy/copy-dependencies.php /tmp/oci8.so /tmp/extension-libs && \ + cp /tmp/libocci.so.${IC_VERSION}.1 /tmp/extension-libs && \ + cp /tmp/libociicus.so /tmp/extension-libs # Build the final image from the scratch image that contain files you want to export FROM scratch COPY --from=ext /tmp/oci8.so /opt/bref/extensions/oci8.so COPY --from=ext /tmp/ext.ini /opt/bref/etc/php/conf.d/ext-oci8.ini -COPY --from=ext /tmp/extension-libs /opt/lib +COPY --from=ext /tmp/extension-libs /opt/lib \ No newline at end of file diff --git a/layers/oci8/config.json b/layers/oci8/config.json index e6d247a5..dd525c05 100644 --- a/layers/oci8/config.json +++ b/layers/oci8/config.json @@ -1,4 +1,7 @@ { "php": [ + "83", + "84", + "85" ] } diff --git a/layers/oci8/docker-compose.yml b/layers/oci8/docker-compose.yml new file mode 100644 index 00000000..da4571d5 --- /dev/null +++ b/layers/oci8/docker-compose.yml @@ -0,0 +1,7 @@ +services: + db: + image: container-registry.oracle.com/database/free:latest-lite + ports: + - "1521:1521" + environment: + - ORACLE_PWD=testing \ No newline at end of file diff --git a/layers/oci8/test.php b/layers/oci8/test.php index b06fbfad..49a62797 100644 --- a/layers/oci8/test.php +++ b/layers/oci8/test.php @@ -1,8 +1,45 @@ Date: Mon, 9 Mar 2026 11:56:16 +0100 Subject: [PATCH 3/7] Add PHP 8.5 support for mongodb2 --- layers/mongodb2/config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layers/mongodb2/config.json b/layers/mongodb2/config.json index 2bf25de7..205ba218 100644 --- a/layers/mongodb2/config.json +++ b/layers/mongodb2/config.json @@ -2,6 +2,7 @@ "php": [ "82", "83", - "84" + "84", + "85" ] } From d05b8716b78169b4a62db10c6d3abcb111967b3a Mon Sep 17 00:00:00 2001 From: Tom Lindelius Date: Mon, 9 Mar 2026 12:00:43 +0100 Subject: [PATCH 4/7] Bump extension to latest 2.1.x version --- layers/mongodb2/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/mongodb2/Dockerfile b/layers/mongodb2/Dockerfile index bcd161b3..d23a34ad 100644 --- a/layers/mongodb2/Dockerfile +++ b/layers/mongodb2/Dockerfile @@ -2,7 +2,7 @@ ARG PHP_VERSION ARG BREF_VERSION FROM bref/build-php-$PHP_VERSION:$BREF_VERSION AS ext -RUN pecl install --force mongodb-2.1.4 +RUN pecl install --force mongodb-2.1.8 RUN cp `php-config --extension-dir`/mongodb.so /tmp/mongodb.so RUN echo 'extension=mongodb.so' > /tmp/ext.ini From 456d0ce97d5f2af6c5176b97602e3e58aeca721b Mon Sep 17 00:00:00 2001 From: Tom Lindelius Date: Mon, 9 Mar 2026 12:25:03 +0100 Subject: [PATCH 5/7] Add PHP 8.5 support for gd --- layers/gd/config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layers/gd/config.json b/layers/gd/config.json index 2bf25de7..205ba218 100644 --- a/layers/gd/config.json +++ b/layers/gd/config.json @@ -2,6 +2,7 @@ "php": [ "82", "83", - "84" + "84", + "85" ] } From f29c51eea3d841793e8e95c3411991a601539861 Mon Sep 17 00:00:00 2001 From: Tom Lindelius Date: Mon, 9 Mar 2026 12:37:04 +0100 Subject: [PATCH 6/7] Add PHP 8.5 support for redis-igbinary --- layers/redis-igbinary/Dockerfile | 4 ++-- layers/redis-igbinary/config.json | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/layers/redis-igbinary/Dockerfile b/layers/redis-igbinary/Dockerfile index b56b3c96..dd576bdf 100644 --- a/layers/redis-igbinary/Dockerfile +++ b/layers/redis-igbinary/Dockerfile @@ -2,8 +2,8 @@ ARG PHP_VERSION ARG BREF_VERSION FROM bref/build-php-$PHP_VERSION:$BREF_VERSION AS ext -RUN pecl install igbinary && \ - pecl install -D 'enable-redis-igbinary="yes"' --force redis-6.2.0 && \ +RUN pecl install igbinary --force igbinary-3.2.17RC1 && \ + pecl install -D 'enable-redis-igbinary="yes"' --force redis-6.3.0 && \ cp `php-config --extension-dir`/igbinary.so /tmp/igbinary.so && \ cp `php-config --extension-dir`/redis.so /tmp/redis.so && \ echo 'extension=igbinary.so' > /tmp/ext-igbinary.ini && \ diff --git a/layers/redis-igbinary/config.json b/layers/redis-igbinary/config.json index 2bf25de7..205ba218 100644 --- a/layers/redis-igbinary/config.json +++ b/layers/redis-igbinary/config.json @@ -2,6 +2,7 @@ "php": [ "82", "83", - "84" + "84", + "85" ] } From 9d42ce34108c40479d1148f9679305bdb0846a50 Mon Sep 17 00:00:00 2001 From: Bref Bot Date: Mon, 9 Mar 2026 14:18:54 +0000 Subject: [PATCH 7/7] Updated layers.json --- layers.json | 4964 ++++++++++++++++++++++++++------------------------- 1 file changed, 2557 insertions(+), 2407 deletions(-) diff --git a/layers.json b/layers.json index 300f93de..b47f0b80 100644 --- a/layers.json +++ b/layers.json @@ -1,230 +1,5 @@ { "amqp-php-82": { - "ca-central-1": 18, - "eu-central-1": 18, - "eu-north-1": 18, - "eu-west-1": 18, - "eu-west-2": 18, - "eu-west-3": 18, - "sa-east-1": 18, - "us-east-1": 18, - "us-east-2": 18, - "us-west-1": 18, - "us-west-2": 18, - "ap-east-1": 18, - "ap-south-1": 18, - "ap-northeast-1": 18, - "ap-northeast-2": 18, - "ap-northeast-3": 18, - "ap-southeast-1": 18, - "ap-southeast-2": 18, - "ap-southeast-3": 2, - "eu-south-1": 18, - "eu-south-2": 14, - "af-south-1": 16, - "me-south-1": 16 - }, - "amqp-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, - "amqp-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "blackfire-php-82": { - "ca-central-1": 635, - "eu-central-1": 635, - "eu-north-1": 635, - "eu-west-1": 635, - "eu-west-2": 635, - "eu-west-3": 635, - "sa-east-1": 635, - "us-east-1": 635, - "us-east-2": 635, - "us-west-1": 635, - "us-west-2": 635, - "ap-east-1": 635, - "ap-south-1": 635, - "ap-northeast-1": 635, - "ap-northeast-2": 635, - "ap-northeast-3": 635, - "ap-southeast-1": 635, - "ap-southeast-2": 635, - "ap-southeast-3": 7, - "eu-south-1": 635, - "eu-south-2": 635, - "af-south-1": 635, - "me-south-1": 635 - }, - "blackfire-php-83": { - "ca-central-1": 482, - "eu-central-1": 482, - "eu-north-1": 482, - "eu-west-1": 482, - "eu-west-2": 482, - "eu-west-3": 482, - "sa-east-1": 482, - "us-east-1": 482, - "us-east-2": 482, - "us-west-1": 482, - "us-west-2": 482, - "ap-east-1": 482, - "ap-south-1": 482, - "ap-northeast-1": 482, - "ap-northeast-2": 482, - "ap-northeast-3": 482, - "ap-southeast-1": 482, - "ap-southeast-2": 482, - "ap-southeast-3": 7, - "eu-south-1": 482, - "eu-south-2": 482, - "af-south-1": 482, - "me-south-1": 482 - }, - "blackfire-php-84": { - "ca-central-1": 325, - "eu-central-1": 325, - "eu-north-1": 325, - "eu-west-1": 325, - "eu-west-2": 325, - "eu-west-3": 325, - "sa-east-1": 325, - "us-east-1": 325, - "us-east-2": 325, - "us-west-1": 325, - "us-west-2": 325, - "ap-east-1": 325, - "ap-south-1": 325, - "ap-northeast-1": 325, - "ap-northeast-2": 325, - "ap-northeast-3": 325, - "ap-southeast-1": 325, - "ap-southeast-2": 325, - "ap-southeast-3": 7, - "eu-south-1": 325, - "eu-south-2": 325, - "af-south-1": 325, - "me-south-1": 325 - }, - "bsdiff-php-82": { - "ca-central-1": 14, - "eu-central-1": 14, - "eu-north-1": 14, - "eu-west-1": 14, - "eu-west-2": 14, - "eu-west-3": 14, - "sa-east-1": 14, - "us-east-1": 14, - "us-east-2": 14, - "us-west-1": 14, - "us-west-2": 14, - "ap-east-1": 14, - "ap-south-1": 14, - "ap-northeast-1": 14, - "ap-northeast-2": 14, - "ap-northeast-3": 14, - "ap-southeast-1": 14, - "ap-southeast-2": 14, - "ap-southeast-3": 2, - "eu-south-1": 14, - "eu-south-2": 14, - "af-south-1": 14, - "me-south-1": 14 - }, - "bsdiff-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, - "bsdiff-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "calendar-php-82": { "ca-central-1": 19, "eu-central-1": 19, "eu-north-1": 19, @@ -243,113 +18,163 @@ "ap-northeast-3": 19, "ap-southeast-1": 19, "ap-southeast-2": 19, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 19, "eu-south-2": 15, "af-south-1": 17, "me-south-1": 17 }, - "calendar-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "amqp-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "calendar-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "amqp-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "calendar-php-85": { - "ca-central-1": 1, - "eu-central-1": 1, - "eu-north-1": 1, - "eu-west-1": 1, - "eu-west-2": 1, - "eu-west-3": 1, - "sa-east-1": 1, - "us-east-1": 1, - "us-east-2": 1, - "us-west-1": 1, - "us-west-2": 1, - "ap-east-1": 1, - "ap-south-1": 1, - "ap-northeast-1": 1, - "ap-northeast-2": 1, - "ap-northeast-3": 1, - "ap-southeast-1": 1, - "ap-southeast-2": 1, - "ap-southeast-3": 1, - "eu-south-1": 1, - "eu-south-2": 1, - "af-south-1": 1, - "me-south-1": 1 + "blackfire-php-82": { + "ca-central-1": 636, + "eu-central-1": 636, + "eu-north-1": 636, + "eu-west-1": 636, + "eu-west-2": 636, + "eu-west-3": 636, + "sa-east-1": 636, + "us-east-1": 636, + "us-east-2": 636, + "us-west-1": 636, + "us-west-2": 636, + "ap-east-1": 636, + "ap-south-1": 636, + "ap-northeast-1": 636, + "ap-northeast-2": 636, + "ap-northeast-3": 636, + "ap-southeast-1": 636, + "ap-southeast-2": 636, + "ap-southeast-3": 8, + "eu-south-1": 636, + "eu-south-2": 636, + "af-south-1": 636, + "me-south-1": 636 }, - "datadog-php-82": { - "ca-central-1": 13, - "eu-central-1": 13, - "eu-north-1": 13, - "eu-west-1": 13, - "eu-west-2": 13, - "eu-west-3": 13, - "sa-east-1": 13, - "us-east-1": 13, - "us-east-2": 13, - "us-west-1": 13, - "us-west-2": 13, - "ap-east-1": 13, - "ap-south-1": 13, - "ap-northeast-1": 13, - "ap-northeast-2": 13, - "ap-northeast-3": 13, - "ap-southeast-1": 13, - "ap-southeast-2": 13, - "ap-southeast-3": 2, - "eu-south-1": 13, - "eu-south-2": 13, - "af-south-1": 13, - "me-south-1": 13 + "blackfire-php-83": { + "ca-central-1": 483, + "eu-central-1": 483, + "eu-north-1": 483, + "eu-west-1": 483, + "eu-west-2": 483, + "eu-west-3": 483, + "sa-east-1": 483, + "us-east-1": 483, + "us-east-2": 483, + "us-west-1": 483, + "us-west-2": 483, + "ap-east-1": 483, + "ap-south-1": 483, + "ap-northeast-1": 483, + "ap-northeast-2": 483, + "ap-northeast-3": 483, + "ap-southeast-1": 483, + "ap-southeast-2": 483, + "ap-southeast-3": 8, + "eu-south-1": 483, + "eu-south-2": 483, + "af-south-1": 483, + "me-south-1": 483 }, - "datadog-php-83": { + "blackfire-php-84": { + "ca-central-1": 326, + "eu-central-1": 326, + "eu-north-1": 326, + "eu-west-1": 326, + "eu-west-2": 326, + "eu-west-3": 326, + "sa-east-1": 326, + "us-east-1": 326, + "us-east-2": 326, + "us-west-1": 326, + "us-west-2": 326, + "ap-east-1": 326, + "ap-south-1": 326, + "ap-northeast-1": 326, + "ap-northeast-2": 326, + "ap-northeast-3": 326, + "ap-southeast-1": 326, + "ap-southeast-2": 326, + "ap-southeast-3": 8, + "eu-south-1": 326, + "eu-south-2": 326, + "af-south-1": 326, + "me-south-1": 326 + }, + "bsdiff-php-82": { + "ca-central-1": 15, + "eu-central-1": 15, + "eu-north-1": 15, + "eu-west-1": 15, + "eu-west-2": 15, + "eu-west-3": 15, + "sa-east-1": 15, + "us-east-1": 15, + "us-east-2": 15, + "us-west-1": 15, + "us-west-2": 15, + "ap-east-1": 15, + "ap-south-1": 15, + "ap-northeast-1": 15, + "ap-northeast-2": 15, + "ap-northeast-3": 15, + "ap-southeast-1": 15, + "ap-southeast-2": 15, + "ap-southeast-3": 3, + "eu-south-1": 15, + "eu-south-2": 15, + "af-south-1": 15, + "me-south-1": 15 + }, + "bsdiff-php-83": { "ca-central-1": 11, "eu-central-1": 11, "eu-north-1": 11, @@ -368,13 +193,13 @@ "ap-northeast-3": 11, "ap-southeast-1": 11, "ap-southeast-2": 11, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 11, "eu-south-2": 11, "af-south-1": 11, "me-south-1": 11 }, - "datadog-php-84": { + "bsdiff-php-84": { "ca-central-1": 7, "eu-central-1": 7, "eu-north-1": 7, @@ -393,113 +218,113 @@ "ap-northeast-3": 7, "ap-southeast-1": 7, "ap-southeast-2": 7, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 7, "eu-south-2": 7, "af-south-1": 7, "me-south-1": 7 }, - "datadog-php-85": { - "ca-central-1": 1, - "eu-central-1": 1, - "eu-north-1": 1, - "eu-west-1": 1, - "eu-west-2": 1, - "eu-west-3": 1, - "sa-east-1": 1, - "us-east-1": 1, - "us-east-2": 1, - "us-west-1": 1, - "us-west-2": 1, - "ap-east-1": 1, - "ap-south-1": 1, - "ap-northeast-1": 1, - "ap-northeast-2": 1, - "ap-northeast-3": 1, - "ap-southeast-1": 1, - "ap-southeast-2": 1, - "ap-southeast-3": 1, - "eu-south-1": 1, - "eu-south-2": 1, - "af-south-1": 1, - "me-south-1": 1 + "calendar-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "ds-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "calendar-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "ds-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, + "calendar-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "calendar-php-85": { + "ca-central-1": 2, + "eu-central-1": 2, + "eu-north-1": 2, + "eu-west-1": 2, + "eu-west-2": 2, + "eu-west-3": 2, + "sa-east-1": 2, + "us-east-1": 2, + "us-east-2": 2, + "us-west-1": 2, + "us-west-2": 2, + "ap-east-1": 2, + "ap-south-1": 2, + "ap-northeast-1": 2, + "ap-northeast-2": 2, + "ap-northeast-3": 2, + "ap-southeast-1": 2, + "ap-southeast-2": 2, "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "eu-south-1": 2, + "eu-south-2": 2, + "af-south-1": 2, + "me-south-1": 2 }, - "ds-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "elastic-apm-php-82": { + "datadog-php-82": { "ca-central-1": 14, "eu-central-1": 14, "eu-north-1": 14, @@ -518,38 +343,13 @@ "ap-northeast-3": 14, "ap-southeast-1": 14, "ap-southeast-2": 14, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 14, "eu-south-2": 14, "af-south-1": 14, "me-south-1": 14 }, - "elastic-apm-php-83": { - "ca-central-1": 9, - "eu-central-1": 9, - "eu-north-1": 9, - "eu-west-1": 9, - "eu-west-2": 9, - "eu-west-3": 9, - "sa-east-1": 9, - "us-east-1": 9, - "us-east-2": 9, - "us-west-1": 9, - "us-west-2": 9, - "ap-east-1": 9, - "ap-south-1": 9, - "ap-northeast-1": 9, - "ap-northeast-2": 9, - "ap-northeast-3": 9, - "ap-southeast-1": 9, - "ap-southeast-2": 9, - "ap-southeast-3": 2, - "eu-south-1": 9, - "eu-south-2": 9, - "af-south-1": 9, - "me-south-1": 9 - }, - "excimer-php-82": { + "datadog-php-83": { "ca-central-1": 12, "eu-central-1": 12, "eu-north-1": 12, @@ -568,63 +368,63 @@ "ap-northeast-3": 12, "ap-southeast-1": 12, "ap-southeast-2": 12, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 12, "eu-south-2": 12, "af-south-1": 12, "me-south-1": 12 }, - "excimer-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "datadog-php-84": { + "ca-central-1": 8, + "eu-central-1": 8, + "eu-north-1": 8, + "eu-west-1": 8, + "eu-west-2": 8, + "eu-west-3": 8, + "sa-east-1": 8, + "us-east-1": 8, + "us-east-2": 8, + "us-west-1": 8, + "us-west-2": 8, + "ap-east-1": 8, + "ap-south-1": 8, + "ap-northeast-1": 8, + "ap-northeast-2": 8, + "ap-northeast-3": 8, + "ap-southeast-1": 8, + "ap-southeast-2": 8, + "ap-southeast-3": 3, + "eu-south-1": 8, + "eu-south-2": 8, + "af-south-1": 8, + "me-south-1": 8 }, - "excimer-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, + "datadog-php-85": { + "ca-central-1": 2, + "eu-central-1": 2, + "eu-north-1": 2, + "eu-west-1": 2, + "eu-west-2": 2, + "eu-west-3": 2, + "sa-east-1": 2, + "us-east-1": 2, + "us-east-2": 2, + "us-west-1": 2, + "us-west-2": 2, + "ap-east-1": 2, + "ap-south-1": 2, + "ap-northeast-1": 2, + "ap-northeast-2": 2, + "ap-northeast-3": 2, + "ap-southeast-1": 2, + "ap-southeast-2": 2, "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "eu-south-1": 2, + "eu-south-2": 2, + "af-south-1": 2, + "me-south-1": 2 }, - "gd-php-82": { + "ds-php-82": { "ca-central-1": 20, "eu-central-1": 20, "eu-north-1": 20, @@ -643,13 +443,13 @@ "ap-northeast-3": 20, "ap-southeast-1": 20, "ap-southeast-2": 20, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 20, "eu-south-2": 16, "af-south-1": 18, "me-south-1": 18 }, - "gd-php-83": { + "ds-php-83": { "ca-central-1": 11, "eu-central-1": 11, "eu-north-1": 11, @@ -668,13 +468,13 @@ "ap-northeast-3": 11, "ap-southeast-1": 11, "ap-southeast-2": 11, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 11, "eu-south-2": 11, "af-south-1": 11, "me-south-1": 11 }, - "gd-php-84": { + "ds-php-84": { "ca-central-1": 7, "eu-central-1": 7, "eu-north-1": 7, @@ -693,38 +493,38 @@ "ap-northeast-3": 7, "ap-southeast-1": 7, "ap-southeast-2": 7, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 7, "eu-south-2": 7, "af-south-1": 7, "me-south-1": 7 }, - "gmp-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, + "elastic-apm-php-82": { + "ca-central-1": 15, + "eu-central-1": 15, + "eu-north-1": 15, + "eu-west-1": 15, + "eu-west-2": 15, + "eu-west-3": 15, + "sa-east-1": 15, + "us-east-1": 15, + "us-east-2": 15, + "us-west-1": 15, + "us-west-2": 15, + "ap-east-1": 15, + "ap-south-1": 15, + "ap-northeast-1": 15, + "ap-northeast-2": 15, + "ap-northeast-3": 15, + "ap-southeast-1": 15, + "ap-southeast-2": 15, + "ap-southeast-3": 3, + "eu-south-1": 15, "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "af-south-1": 15, + "me-south-1": 15 }, - "gmp-php-83": { + "elastic-apm-php-83": { "ca-central-1": 10, "eu-central-1": 10, "eu-north-1": 10, @@ -743,38 +543,88 @@ "ap-northeast-3": 10, "ap-southeast-1": 10, "ap-southeast-2": 10, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 10, "eu-south-2": 10, "af-south-1": 10, "me-south-1": 10 }, - "gmp-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "excimer-php-82": { + "ca-central-1": 13, + "eu-central-1": 13, + "eu-north-1": 13, + "eu-west-1": 13, + "eu-west-2": 13, + "eu-west-3": 13, + "sa-east-1": 13, + "us-east-1": 13, + "us-east-2": 13, + "us-west-1": 13, + "us-west-2": 13, + "ap-east-1": 13, + "ap-south-1": 13, + "ap-northeast-1": 13, + "ap-northeast-2": 13, + "ap-northeast-3": 13, + "ap-southeast-1": 13, + "ap-southeast-2": 13, + "ap-southeast-3": 3, + "eu-south-1": 13, + "eu-south-2": 13, + "af-south-1": 13, + "me-south-1": 13 }, - "gnupg-php-82": { + "excimer-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 + }, + "excimer-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "gd-php-82": { "ca-central-1": 21, "eu-central-1": 21, "eu-north-1": 21, @@ -793,13 +643,13 @@ "ap-northeast-3": 21, "ap-southeast-1": 21, "ap-southeast-2": 21, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 21, "eu-south-2": 17, "af-south-1": 19, "me-south-1": 19 }, - "gnupg-php-83": { + "gd-php-83": { "ca-central-1": 12, "eu-central-1": 12, "eu-north-1": 12, @@ -818,138 +668,13 @@ "ap-northeast-3": 12, "ap-southeast-1": 12, "ap-southeast-2": 12, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 12, "eu-south-2": 12, "af-south-1": 12, "me-south-1": 12 }, - "gnupg-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "grpc-php-82": { - "ca-central-1": 20, - "eu-central-1": 20, - "eu-north-1": 20, - "eu-west-1": 20, - "eu-west-2": 20, - "eu-west-3": 20, - "sa-east-1": 20, - "us-east-1": 20, - "us-east-2": 20, - "us-west-1": 20, - "us-west-2": 20, - "ap-east-1": 20, - "ap-south-1": 20, - "ap-northeast-1": 20, - "ap-northeast-2": 20, - "ap-northeast-3": 20, - "ap-southeast-1": 20, - "ap-southeast-2": 20, - "ap-southeast-3": 2, - "eu-south-1": 20, - "eu-south-2": 18, - "af-south-1": 19, - "me-south-1": 19 - }, - "grpc-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, - "grpc-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "h3-php-82": { - "ca-central-1": 8, - "eu-central-1": 8, - "eu-north-1": 8, - "eu-west-1": 8, - "eu-west-2": 8, - "eu-west-3": 8, - "sa-east-1": 8, - "us-east-1": 8, - "us-east-2": 8, - "us-west-1": 8, - "us-west-2": 8, - "ap-east-1": 8, - "ap-south-1": 8, - "ap-northeast-1": 8, - "ap-northeast-2": 8, - "ap-northeast-3": 8, - "ap-southeast-1": 8, - "ap-southeast-2": 8, - "ap-southeast-3": 2, - "eu-south-1": 8, - "eu-south-2": 8, - "af-south-1": 8, - "me-south-1": 8 - }, - "h3-php-83": { + "gd-php-84": { "ca-central-1": 8, "eu-central-1": 8, "eu-north-1": 8, @@ -968,113 +693,113 @@ "ap-northeast-3": 8, "ap-southeast-1": 8, "ap-southeast-2": 8, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 8, "eu-south-2": 8, "af-south-1": 8, "me-south-1": 8 }, - "h3-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "gd-php-85": { + "ca-central-1": 1, + "eu-central-1": 1, + "eu-north-1": 1, + "eu-west-1": 1, + "eu-west-2": 1, + "eu-west-3": 1, + "sa-east-1": 1, + "us-east-1": 1, + "us-east-2": 1, + "us-west-1": 1, + "us-west-2": 1, + "ap-east-1": 1, + "ap-south-1": 1, + "ap-northeast-1": 1, + "ap-northeast-2": 1, + "ap-northeast-3": 1, + "ap-southeast-1": 1, + "ap-southeast-2": 1, + "ap-southeast-3": 1, + "eu-south-1": 1, + "eu-south-2": 1, + "af-south-1": 1, + "me-south-1": 1 }, - "igbinary-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "gmp-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "igbinary-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "gmp-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "igbinary-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "gmp-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "imagick-php-82": { + "gnupg-php-82": { "ca-central-1": 22, "eu-central-1": 22, "eu-north-1": 22, @@ -1093,13 +818,88 @@ "ap-northeast-3": 22, "ap-southeast-1": 22, "ap-southeast-2": 22, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 22, + "eu-south-2": 18, + "af-south-1": 20, + "me-south-1": 20 + }, + "gnupg-php-83": { + "ca-central-1": 13, + "eu-central-1": 13, + "eu-north-1": 13, + "eu-west-1": 13, + "eu-west-2": 13, + "eu-west-3": 13, + "sa-east-1": 13, + "us-east-1": 13, + "us-east-2": 13, + "us-west-1": 13, + "us-west-2": 13, + "ap-east-1": 13, + "ap-south-1": 13, + "ap-northeast-1": 13, + "ap-northeast-2": 13, + "ap-northeast-3": 13, + "ap-southeast-1": 13, + "ap-southeast-2": 13, + "ap-southeast-3": 3, + "eu-south-1": 13, + "eu-south-2": 13, + "af-south-1": 13, + "me-south-1": 13 + }, + "gnupg-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "grpc-php-82": { + "ca-central-1": 21, + "eu-central-1": 21, + "eu-north-1": 21, + "eu-west-1": 21, + "eu-west-2": 21, + "eu-west-3": 21, + "sa-east-1": 21, + "us-east-1": 21, + "us-east-2": 21, + "us-west-1": 21, + "us-west-2": 21, + "ap-east-1": 21, + "ap-south-1": 21, + "ap-northeast-1": 21, + "ap-northeast-2": 21, + "ap-northeast-3": 21, + "ap-southeast-1": 21, + "ap-southeast-2": 21, + "ap-southeast-3": 3, + "eu-south-1": 21, "eu-south-2": 19, - "af-south-1": 21, - "me-south-1": 21 + "af-south-1": 20, + "me-south-1": 20 }, - "imagick-php-83": { + "grpc-php-83": { "ca-central-1": 11, "eu-central-1": 11, "eu-north-1": 11, @@ -1118,288 +918,238 @@ "ap-northeast-3": 11, "ap-southeast-1": 11, "ap-southeast-2": 11, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 11, "eu-south-2": 11, "af-south-1": 11, "me-south-1": 11 }, - "imagick-php-84": { - "ca-central-1": 5, - "eu-central-1": 5, - "eu-north-1": 5, - "eu-west-1": 5, - "eu-west-2": 5, - "eu-west-3": 5, - "sa-east-1": 5, - "us-east-1": 5, - "us-east-2": 5, - "us-west-1": 5, - "us-west-2": 5, - "ap-east-1": 5, - "ap-south-1": 5, - "ap-northeast-1": 5, - "ap-northeast-2": 5, - "ap-northeast-3": 5, - "ap-southeast-1": 5, - "ap-southeast-2": 5, - "ap-southeast-3": 2, - "eu-south-1": 5, - "eu-south-2": 5, - "af-south-1": 5, - "me-south-1": 5 + "grpc-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "imagick-php-85": { - "ca-central-1": 1, - "eu-central-1": 1, - "eu-north-1": 1, - "eu-west-1": 1, - "eu-west-2": 1, - "eu-west-3": 1, - "sa-east-1": 1, - "us-east-1": 1, - "us-east-2": 1, - "us-west-1": 1, - "us-west-2": 1, - "ap-east-1": 1, - "ap-south-1": 1, - "ap-northeast-1": 1, - "ap-northeast-2": 1, - "ap-northeast-3": 1, - "ap-southeast-1": 1, - "ap-southeast-2": 1, - "ap-southeast-3": 1, - "eu-south-1": 1, - "eu-south-2": 1, - "af-south-1": 1, - "me-south-1": 1 - }, - "ldap-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 - }, - "ldap-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "h3-php-82": { + "ca-central-1": 9, + "eu-central-1": 9, + "eu-north-1": 9, + "eu-west-1": 9, + "eu-west-2": 9, + "eu-west-3": 9, + "sa-east-1": 9, + "us-east-1": 9, + "us-east-2": 9, + "us-west-1": 9, + "us-west-2": 9, + "ap-east-1": 9, + "ap-south-1": 9, + "ap-northeast-1": 9, + "ap-northeast-2": 9, + "ap-northeast-3": 9, + "ap-southeast-1": 9, + "ap-southeast-2": 9, + "ap-southeast-3": 3, + "eu-south-1": 9, + "eu-south-2": 9, + "af-south-1": 9, + "me-south-1": 9 }, - "ldap-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "h3-php-83": { + "ca-central-1": 9, + "eu-central-1": 9, + "eu-north-1": 9, + "eu-west-1": 9, + "eu-west-2": 9, + "eu-west-3": 9, + "sa-east-1": 9, + "us-east-1": 9, + "us-east-2": 9, + "us-west-1": 9, + "us-west-2": 9, + "ap-east-1": 9, + "ap-south-1": 9, + "ap-northeast-1": 9, + "ap-northeast-2": 9, + "ap-northeast-3": 9, + "ap-southeast-1": 9, + "ap-southeast-2": 9, + "ap-southeast-3": 3, + "eu-south-1": 9, + "eu-south-2": 9, + "af-south-1": 9, + "me-south-1": 9 }, - "mailparse-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "h3-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "mailparse-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "igbinary-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "mailparse-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "igbinary-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "mailparse-php-85": { - "ca-central-1": 1, - "eu-central-1": 1, - "eu-north-1": 1, - "eu-west-1": 1, - "eu-west-2": 1, - "eu-west-3": 1, - "sa-east-1": 1, - "us-east-1": 1, - "us-east-2": 1, - "us-west-1": 1, - "us-west-2": 1, - "ap-east-1": 1, - "ap-south-1": 1, - "ap-northeast-1": 1, - "ap-northeast-2": 1, - "ap-northeast-3": 1, - "ap-southeast-1": 1, - "ap-southeast-2": 1, - "ap-southeast-3": 1, - "eu-south-1": 1, - "eu-south-2": 1, - "af-south-1": 1, - "me-south-1": 1 + "igbinary-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "maxminddb-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "imagick-php-82": { + "ca-central-1": 23, + "eu-central-1": 23, + "eu-north-1": 23, + "eu-west-1": 23, + "eu-west-2": 23, + "eu-west-3": 23, + "sa-east-1": 23, + "us-east-1": 23, + "us-east-2": 23, + "us-west-1": 23, + "us-west-2": 23, + "ap-east-1": 23, + "ap-south-1": 23, + "ap-northeast-1": 23, + "ap-northeast-2": 23, + "ap-northeast-3": 23, + "ap-southeast-1": 23, + "ap-southeast-2": 23, + "ap-southeast-3": 3, + "eu-south-1": 23, + "eu-south-2": 20, + "af-south-1": 22, + "me-south-1": 22 }, - "maxminddb-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "imagick-php-83": { + "ca-central-1": 12, + "eu-central-1": 12, + "eu-north-1": 12, + "eu-west-1": 12, + "eu-west-2": 12, + "eu-west-3": 12, + "sa-east-1": 12, + "us-east-1": 12, + "us-east-2": 12, + "us-west-1": 12, + "us-west-2": 12, + "ap-east-1": 12, + "ap-south-1": 12, + "ap-northeast-1": 12, + "ap-northeast-2": 12, + "ap-northeast-3": 12, + "ap-southeast-1": 12, + "ap-southeast-2": 12, + "ap-southeast-3": 3, + "eu-south-1": 12, + "eu-south-2": 12, + "af-south-1": 12, + "me-south-1": 12 }, - "maxminddb-php-84": { + "imagick-php-84": { "ca-central-1": 6, "eu-central-1": 6, "eu-north-1": 6, @@ -1418,88 +1168,63 @@ "ap-northeast-3": 6, "ap-southeast-1": 6, "ap-southeast-2": 6, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 6, "eu-south-2": 6, "af-south-1": 6, "me-south-1": 6 }, - "memcached-php-82": { - "ca-central-1": 18, - "eu-central-1": 18, - "eu-north-1": 18, - "eu-west-1": 18, - "eu-west-2": 18, - "eu-west-3": 18, - "sa-east-1": 18, - "us-east-1": 18, - "us-east-2": 18, - "us-west-1": 18, - "us-west-2": 18, - "ap-east-1": 18, - "ap-south-1": 18, - "ap-northeast-1": 18, - "ap-northeast-2": 18, - "ap-northeast-3": 18, - "ap-southeast-1": 18, - "ap-southeast-2": 18, - "ap-southeast-3": 2, - "eu-south-1": 18, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 - }, - "memcached-php-83": { - "ca-central-1": 9, - "eu-central-1": 9, - "eu-north-1": 9, - "eu-west-1": 9, - "eu-west-2": 9, - "eu-west-3": 9, - "sa-east-1": 9, - "us-east-1": 9, - "us-east-2": 9, - "us-west-1": 9, - "us-west-2": 9, - "ap-east-1": 9, - "ap-south-1": 9, - "ap-northeast-1": 9, - "ap-northeast-2": 9, - "ap-northeast-3": 9, - "ap-southeast-1": 9, - "ap-southeast-2": 9, + "imagick-php-85": { + "ca-central-1": 2, + "eu-central-1": 2, + "eu-north-1": 2, + "eu-west-1": 2, + "eu-west-2": 2, + "eu-west-3": 2, + "sa-east-1": 2, + "us-east-1": 2, + "us-east-2": 2, + "us-west-1": 2, + "us-west-2": 2, + "ap-east-1": 2, + "ap-south-1": 2, + "ap-northeast-1": 2, + "ap-northeast-2": 2, + "ap-northeast-3": 2, + "ap-southeast-1": 2, + "ap-southeast-2": 2, "ap-southeast-3": 2, - "eu-south-1": 9, - "eu-south-2": 9, - "af-south-1": 9, - "me-south-1": 9 + "eu-south-1": 2, + "eu-south-2": 2, + "af-south-1": 2, + "me-south-1": 2 }, - "mongodb-php-82": { - "ca-central-1": 21, - "eu-central-1": 21, - "eu-north-1": 21, - "eu-west-1": 21, - "eu-west-2": 21, - "eu-west-3": 21, - "sa-east-1": 21, - "us-east-1": 21, - "us-east-2": 21, - "us-west-1": 21, - "us-west-2": 21, - "ap-east-1": 21, - "ap-south-1": 21, - "ap-northeast-1": 21, - "ap-northeast-2": 21, - "ap-northeast-3": 21, - "ap-southeast-1": 21, - "ap-southeast-2": 21, - "ap-southeast-3": 2, - "eu-south-1": 21, - "eu-south-2": 17, - "af-south-1": 19, - "me-south-1": 19 + "ldap-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "mongodb-php-83": { + "ldap-php-83": { "ca-central-1": 11, "eu-central-1": 11, "eu-north-1": 11, @@ -1518,13 +1243,13 @@ "ap-northeast-3": 11, "ap-southeast-1": 11, "ap-southeast-2": 11, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 11, "eu-south-2": 11, "af-south-1": 11, "me-south-1": 11 }, - "mongodb-php-84": { + "ldap-php-84": { "ca-central-1": 7, "eu-central-1": 7, "eu-north-1": 7, @@ -1543,88 +1268,113 @@ "ap-northeast-3": 7, "ap-southeast-1": 7, "ap-southeast-2": 7, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 7, "eu-south-2": 7, "af-south-1": 7, "me-south-1": 7 }, - "mongodb2-php-82": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "mailparse-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "mongodb2-php-83": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "mailparse-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "mongodb2-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, + "mailparse-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "mailparse-php-85": { + "ca-central-1": 2, + "eu-central-1": 2, + "eu-north-1": 2, + "eu-west-1": 2, + "eu-west-2": 2, + "eu-west-3": 2, + "sa-east-1": 2, + "us-east-1": 2, + "us-east-2": 2, + "us-west-1": 2, + "us-west-2": 2, + "ap-east-1": 2, + "ap-south-1": 2, + "ap-northeast-1": 2, + "ap-northeast-2": 2, + "ap-northeast-3": 2, + "ap-southeast-1": 2, + "ap-southeast-2": 2, "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "eu-south-1": 2, + "eu-south-2": 2, + "af-south-1": 2, + "me-south-1": 2 }, - "msgpack-php-82": { + "maxminddb-php-82": { "ca-central-1": 20, "eu-central-1": 20, "eu-north-1": 20, @@ -1643,13 +1393,88 @@ "ap-northeast-3": 20, "ap-southeast-1": 20, "ap-southeast-2": 20, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 20, "eu-south-2": 16, "af-south-1": 18, - "me-south-1": 17 + "me-south-1": 18 + }, + "maxminddb-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 + }, + "maxminddb-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "memcached-php-82": { + "ca-central-1": 19, + "eu-central-1": 19, + "eu-north-1": 19, + "eu-west-1": 19, + "eu-west-2": 19, + "eu-west-3": 19, + "sa-east-1": 19, + "us-east-1": 19, + "us-east-2": 19, + "us-west-1": 19, + "us-west-2": 19, + "ap-east-1": 19, + "ap-south-1": 19, + "ap-northeast-1": 19, + "ap-northeast-2": 19, + "ap-northeast-3": 19, + "ap-southeast-1": 19, + "ap-southeast-2": 19, + "ap-southeast-3": 3, + "eu-south-1": 19, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "msgpack-php-83": { + "memcached-php-83": { "ca-central-1": 10, "eu-central-1": 10, "eu-north-1": 10, @@ -1668,138 +1493,213 @@ "ap-northeast-3": 10, "ap-southeast-1": 10, "ap-southeast-2": 10, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 10, "eu-south-2": 10, "af-south-1": 10, "me-south-1": 10 }, - "msgpack-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "mongodb-php-82": { + "ca-central-1": 22, + "eu-central-1": 22, + "eu-north-1": 22, + "eu-west-1": 22, + "eu-west-2": 22, + "eu-west-3": 22, + "sa-east-1": 22, + "us-east-1": 22, + "us-east-2": 22, + "us-west-1": 22, + "us-west-2": 22, + "ap-east-1": 22, + "ap-south-1": 22, + "ap-northeast-1": 22, + "ap-northeast-2": 22, + "ap-northeast-3": 22, + "ap-southeast-1": 22, + "ap-southeast-2": 22, + "ap-southeast-3": 3, + "eu-south-1": 22, + "eu-south-2": 18, + "af-south-1": 20, + "me-south-1": 20 }, - "newrelic-php-82": { - "ca-central-1": 23, - "eu-central-1": 23, - "eu-north-1": 23, - "eu-west-1": 23, - "eu-west-2": 23, - "eu-west-3": 23, - "sa-east-1": 23, - "us-east-1": 23, - "us-east-2": 23, - "us-west-1": 23, - "us-west-2": 23, - "ap-east-1": 23, - "ap-south-1": 23, - "ap-northeast-1": 23, - "ap-northeast-2": 23, - "ap-northeast-3": 23, - "ap-southeast-1": 23, - "ap-southeast-2": 23, - "ap-southeast-3": 2, - "eu-south-1": 23, - "eu-south-2": 23, - "af-south-1": 23, - "me-south-1": 23 + "mongodb-php-83": { + "ca-central-1": 12, + "eu-central-1": 12, + "eu-north-1": 12, + "eu-west-1": 12, + "eu-west-2": 12, + "eu-west-3": 12, + "sa-east-1": 12, + "us-east-1": 12, + "us-east-2": 12, + "us-west-1": 12, + "us-west-2": 12, + "ap-east-1": 12, + "ap-south-1": 12, + "ap-northeast-1": 12, + "ap-northeast-2": 12, + "ap-northeast-3": 12, + "ap-southeast-1": 12, + "ap-southeast-2": 12, + "ap-southeast-3": 3, + "eu-south-1": 12, + "eu-south-2": 12, + "af-south-1": 12, + "me-south-1": 12 }, - "newrelic-php-83": { - "ca-central-1": 17, - "eu-central-1": 17, - "eu-north-1": 17, - "eu-west-1": 17, - "eu-west-2": 17, - "eu-west-3": 17, - "sa-east-1": 17, - "us-east-1": 17, - "us-east-2": 17, - "us-west-1": 17, - "us-west-2": 17, - "ap-east-1": 17, - "ap-south-1": 17, - "ap-northeast-1": 17, - "ap-northeast-2": 17, - "ap-northeast-3": 17, - "ap-southeast-1": 17, - "ap-southeast-2": 17, - "ap-southeast-3": 2, - "eu-south-1": 17, - "eu-south-2": 17, - "af-south-1": 17, - "me-south-1": 17 + "mongodb-php-84": { + "ca-central-1": 8, + "eu-central-1": 8, + "eu-north-1": 8, + "eu-west-1": 8, + "eu-west-2": 8, + "eu-west-3": 8, + "sa-east-1": 8, + "us-east-1": 8, + "us-east-2": 8, + "us-west-1": 8, + "us-west-2": 8, + "ap-east-1": 8, + "ap-south-1": 8, + "ap-northeast-1": 8, + "ap-northeast-2": 8, + "ap-northeast-3": 8, + "ap-southeast-1": 8, + "ap-southeast-2": 8, + "ap-southeast-3": 3, + "eu-south-1": 8, + "eu-south-2": 8, + "af-south-1": 8, + "me-south-1": 8 }, - "newrelic-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "mongodb2-php-82": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "mongodb2-php-83": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "mongodb2-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "mongodb2-php-85": { + "ca-central-1": 1, + "eu-central-1": 1, + "eu-north-1": 1, + "eu-west-1": 1, + "eu-west-2": 1, + "eu-west-3": 1, + "sa-east-1": 1, + "us-east-1": 1, + "us-east-2": 1, + "us-west-1": 1, + "us-west-2": 1, + "ap-east-1": 1, + "ap-south-1": 1, + "ap-northeast-1": 1, + "ap-northeast-2": 1, + "ap-northeast-3": 1, + "ap-southeast-1": 1, + "ap-southeast-2": 1, + "ap-southeast-3": 1, + "eu-south-1": 1, + "eu-south-2": 1, + "af-south-1": 1, + "me-south-1": 1 }, - "odbc-snowflake-php-82": { - "ca-central-1": 20, - "eu-central-1": 20, - "eu-north-1": 20, - "eu-west-1": 20, - "eu-west-2": 20, - "eu-west-3": 20, - "sa-east-1": 20, - "us-east-1": 20, - "us-east-2": 20, - "us-west-1": 20, - "us-west-2": 20, - "ap-east-1": 20, - "ap-south-1": 20, - "ap-northeast-1": 20, - "ap-northeast-2": 20, - "ap-northeast-3": 20, - "ap-southeast-1": 20, - "ap-southeast-2": 20, - "ap-southeast-3": 2, - "eu-south-1": 20, - "eu-south-2": 16, - "af-south-1": 18, + "msgpack-php-82": { + "ca-central-1": 21, + "eu-central-1": 21, + "eu-north-1": 21, + "eu-west-1": 21, + "eu-west-2": 21, + "eu-west-3": 21, + "sa-east-1": 21, + "us-east-1": 21, + "us-east-2": 21, + "us-west-1": 21, + "us-west-2": 21, + "ap-east-1": 21, + "ap-south-1": 21, + "ap-northeast-1": 21, + "ap-northeast-2": 21, + "ap-northeast-3": 21, + "ap-southeast-1": 21, + "ap-southeast-2": 21, + "ap-southeast-3": 3, + "eu-south-1": 21, + "eu-south-2": 17, + "af-south-1": 19, "me-south-1": 18 }, - "odbc-snowflake-php-83": { + "msgpack-php-83": { "ca-central-1": 11, "eu-central-1": 11, "eu-north-1": 11, @@ -1818,13 +1718,13 @@ "ap-northeast-3": 11, "ap-southeast-1": 11, "ap-southeast-2": 11, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 11, "eu-south-2": 11, "af-south-1": 11, "me-south-1": 11 }, - "odbc-snowflake-php-84": { + "msgpack-php-84": { "ca-central-1": 7, "eu-central-1": 7, "eu-north-1": 7, @@ -1843,13 +1743,263 @@ "ap-northeast-3": 7, "ap-southeast-1": 7, "ap-southeast-2": 7, - "ap-southeast-3": 2, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "newrelic-php-82": { + "ca-central-1": 24, + "eu-central-1": 24, + "eu-north-1": 24, + "eu-west-1": 24, + "eu-west-2": 24, + "eu-west-3": 24, + "sa-east-1": 24, + "us-east-1": 24, + "us-east-2": 24, + "us-west-1": 24, + "us-west-2": 24, + "ap-east-1": 24, + "ap-south-1": 24, + "ap-northeast-1": 24, + "ap-northeast-2": 24, + "ap-northeast-3": 24, + "ap-southeast-1": 24, + "ap-southeast-2": 24, + "ap-southeast-3": 3, + "eu-south-1": 24, + "eu-south-2": 24, + "af-south-1": 24, + "me-south-1": 24 + }, + "newrelic-php-83": { + "ca-central-1": 18, + "eu-central-1": 18, + "eu-north-1": 18, + "eu-west-1": 18, + "eu-west-2": 18, + "eu-west-3": 18, + "sa-east-1": 18, + "us-east-1": 18, + "us-east-2": 18, + "us-west-1": 18, + "us-west-2": 18, + "ap-east-1": 18, + "ap-south-1": 18, + "ap-northeast-1": 18, + "ap-northeast-2": 18, + "ap-northeast-3": 18, + "ap-southeast-1": 18, + "ap-southeast-2": 18, + "ap-southeast-3": 3, + "eu-south-1": 18, + "eu-south-2": 18, + "af-south-1": 18, + "me-south-1": 18 + }, + "newrelic-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, "eu-south-1": 7, "eu-south-2": 7, "af-south-1": 7, "me-south-1": 7 }, + "oci8-php-83": { + "ca-central-1": 9, + "eu-central-1": 9, + "eu-north-1": 9, + "eu-west-1": 9, + "eu-west-2": 9, + "eu-west-3": 9, + "sa-east-1": 9, + "us-east-1": 9, + "us-east-2": 9, + "us-west-1": 9, + "us-west-2": 9, + "ap-east-1": 9, + "ap-south-1": 9, + "ap-northeast-1": 9, + "ap-northeast-2": 9, + "ap-northeast-3": 9, + "ap-southeast-1": 9, + "ap-southeast-2": 9, + "ap-southeast-3": 1, + "eu-south-1": 9, + "eu-south-2": 9, + "af-south-1": 9, + "me-south-1": 9 + }, + "oci8-php-84": { + "ca-central-1": 5, + "eu-central-1": 5, + "eu-north-1": 5, + "eu-west-1": 5, + "eu-west-2": 5, + "eu-west-3": 5, + "sa-east-1": 5, + "us-east-1": 5, + "us-east-2": 5, + "us-west-1": 5, + "us-west-2": 5, + "ap-east-1": 5, + "ap-south-1": 5, + "ap-northeast-1": 5, + "ap-northeast-2": 5, + "ap-northeast-3": 5, + "ap-southeast-1": 5, + "ap-southeast-2": 5, + "ap-southeast-3": 1, + "eu-south-1": 5, + "eu-south-2": 5, + "af-south-1": 5, + "me-south-1": 5 + }, + "oci8-php-85": { + "ca-central-1": 1, + "eu-central-1": 1, + "eu-north-1": 1, + "eu-west-1": 1, + "eu-west-2": 1, + "eu-west-3": 1, + "sa-east-1": 1, + "us-east-1": 1, + "us-east-2": 1, + "us-west-1": 1, + "us-west-2": 1, + "ap-east-1": 1, + "ap-south-1": 1, + "ap-northeast-1": 1, + "ap-northeast-2": 1, + "ap-northeast-3": 1, + "ap-southeast-1": 1, + "ap-southeast-2": 1, + "ap-southeast-3": 1, + "eu-south-1": 1, + "eu-south-2": 1, + "af-south-1": 1, + "me-south-1": 1 + }, + "odbc-snowflake-php-82": { + "ca-central-1": 21, + "eu-central-1": 21, + "eu-north-1": 21, + "eu-west-1": 21, + "eu-west-2": 21, + "eu-west-3": 21, + "sa-east-1": 21, + "us-east-1": 21, + "us-east-2": 21, + "us-west-1": 21, + "us-west-2": 21, + "ap-east-1": 21, + "ap-south-1": 21, + "ap-northeast-1": 21, + "ap-northeast-2": 21, + "ap-northeast-3": 21, + "ap-southeast-1": 21, + "ap-southeast-2": 21, + "ap-southeast-3": 3, + "eu-south-1": 21, + "eu-south-2": 17, + "af-south-1": 19, + "me-south-1": 19 + }, + "odbc-snowflake-php-83": { + "ca-central-1": 12, + "eu-central-1": 12, + "eu-north-1": 12, + "eu-west-1": 12, + "eu-west-2": 12, + "eu-west-3": 12, + "sa-east-1": 12, + "us-east-1": 12, + "us-east-2": 12, + "us-west-1": 12, + "us-west-2": 12, + "ap-east-1": 12, + "ap-south-1": 12, + "ap-northeast-1": 12, + "ap-northeast-2": 12, + "ap-northeast-3": 12, + "ap-southeast-1": 12, + "ap-southeast-2": 12, + "ap-southeast-3": 3, + "eu-south-1": 12, + "eu-south-2": 12, + "af-south-1": 12, + "me-south-1": 12 + }, + "odbc-snowflake-php-84": { + "ca-central-1": 8, + "eu-central-1": 8, + "eu-north-1": 8, + "eu-west-1": 8, + "eu-west-2": 8, + "eu-west-3": 8, + "sa-east-1": 8, + "us-east-1": 8, + "us-east-2": 8, + "us-west-1": 8, + "us-west-2": 8, + "ap-east-1": 8, + "ap-south-1": 8, + "ap-northeast-1": 8, + "ap-northeast-2": 8, + "ap-northeast-3": 8, + "ap-southeast-1": 8, + "ap-southeast-2": 8, + "ap-southeast-3": 3, + "eu-south-1": 8, + "eu-south-2": 8, + "af-south-1": 8, + "me-south-1": 8 + }, "opentelemetry-php-82": { + "ca-central-1": 12, + "eu-central-1": 12, + "eu-north-1": 12, + "eu-west-1": 12, + "eu-west-2": 12, + "eu-west-3": 12, + "sa-east-1": 12, + "us-east-1": 12, + "us-east-2": 12, + "us-west-1": 12, + "us-west-2": 12, + "ap-east-1": 12, + "ap-south-1": 12, + "ap-northeast-1": 12, + "ap-northeast-2": 12, + "ap-northeast-3": 12, + "ap-southeast-1": 12, + "ap-southeast-2": 12, + "ap-southeast-3": 3, + "eu-south-1": 12, + "eu-south-2": 12, + "af-south-1": 12, + "me-south-1": 12 + }, + "opentelemetry-php-83": { "ca-central-1": 11, "eu-central-1": 11, "eu-north-1": 11, @@ -1868,463 +2018,263 @@ "ap-northeast-3": 11, "ap-southeast-1": 11, "ap-southeast-2": 11, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 11, "eu-south-2": 11, "af-south-1": 11, "me-south-1": 11 }, - "opentelemetry-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, "opentelemetry-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "pcov-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 - }, - "pcov-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, - "pcov-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "pgsql-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 - }, - "pgsql-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, - "pgsql-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "protobuf-php-82": { - "ca-central-1": 2, - "eu-central-1": 2, - "eu-north-1": 2, - "eu-west-1": 2, - "eu-west-2": 2, - "eu-west-3": 2, - "sa-east-1": 2, - "us-east-1": 2, - "us-east-2": 2, - "us-west-1": 2, - "us-west-2": 2, - "ap-east-1": 2, - "ap-south-1": 2, - "ap-northeast-1": 2, - "ap-northeast-2": 2, - "ap-northeast-3": 2, - "ap-southeast-1": 2, - "ap-southeast-2": 2, - "ap-southeast-3": 2, - "eu-south-1": 2, - "eu-south-2": 2, - "af-south-1": 2, - "me-south-1": 2 + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "protobuf-php-83": { - "ca-central-1": 2, - "eu-central-1": 2, - "eu-north-1": 2, - "eu-west-1": 2, - "eu-west-2": 2, - "eu-west-3": 2, - "sa-east-1": 2, - "us-east-1": 2, - "us-east-2": 2, - "us-west-1": 2, - "us-west-2": 2, - "ap-east-1": 2, - "ap-south-1": 2, - "ap-northeast-1": 2, - "ap-northeast-2": 2, - "ap-northeast-3": 2, - "ap-southeast-1": 2, - "ap-southeast-2": 2, - "ap-southeast-3": 2, - "eu-south-1": 2, - "eu-south-2": 2, - "af-south-1": 2, - "me-south-1": 2 + "pcov-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "protobuf-php-84": { - "ca-central-1": 2, - "eu-central-1": 2, - "eu-north-1": 2, - "eu-west-1": 2, - "eu-west-2": 2, - "eu-west-3": 2, - "sa-east-1": 2, - "us-east-1": 2, - "us-east-2": 2, - "us-west-1": 2, - "us-west-2": 2, - "ap-east-1": 2, - "ap-south-1": 2, - "ap-northeast-1": 2, - "ap-northeast-2": 2, - "ap-northeast-3": 2, - "ap-southeast-1": 2, - "ap-southeast-2": 2, - "ap-southeast-3": 2, - "eu-south-1": 2, - "eu-south-2": 2, - "af-south-1": 2, - "me-south-1": 2 + "pcov-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "rdkafka-php-82": { - "ca-central-1": 18, - "eu-central-1": 18, - "eu-north-1": 18, - "eu-west-1": 18, - "eu-west-2": 18, - "eu-west-3": 18, - "sa-east-1": 18, - "us-east-1": 18, - "us-east-2": 18, - "us-west-1": 18, - "us-west-2": 18, - "ap-east-1": 18, - "ap-south-1": 18, - "ap-northeast-1": 18, - "ap-northeast-2": 18, - "ap-northeast-3": 18, - "ap-southeast-1": 18, - "ap-southeast-2": 18, - "ap-southeast-3": 2, - "eu-south-1": 18, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "pcov-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "rdkafka-php-83": { - "ca-central-1": 9, - "eu-central-1": 9, - "eu-north-1": 9, - "eu-west-1": 9, - "eu-west-2": 9, - "eu-west-3": 9, - "sa-east-1": 9, - "us-east-1": 9, - "us-east-2": 9, - "us-west-1": 9, - "us-west-2": 9, - "ap-east-1": 9, - "ap-south-1": 9, - "ap-northeast-1": 9, - "ap-northeast-2": 9, - "ap-northeast-3": 9, - "ap-southeast-1": 9, - "ap-southeast-2": 9, - "ap-southeast-3": 2, - "eu-south-1": 9, - "eu-south-2": 9, - "af-south-1": 9, - "me-south-1": 9 + "pgsql-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "rdkafka-php-84": { - "ca-central-1": 1, - "eu-central-1": 1, - "eu-north-1": 1, - "eu-west-1": 1, - "eu-west-2": 1, - "eu-west-3": 1, - "sa-east-1": 1, - "us-east-1": 1, - "us-east-2": 1, - "us-west-1": 1, - "us-west-2": 1, - "ap-east-1": 1, - "ap-south-1": 1, - "ap-northeast-1": 1, - "ap-northeast-2": 1, - "ap-northeast-3": 1, - "ap-southeast-1": 1, - "ap-southeast-2": 1, - "ap-southeast-3": 1, - "eu-south-1": 1, - "eu-south-2": 1, - "af-south-1": 1, - "me-south-1": 1 + "pgsql-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "rdkafka-php-85": { - "ca-central-1": 1, - "eu-central-1": 1, - "eu-north-1": 1, - "eu-west-1": 1, - "eu-west-2": 1, - "eu-west-3": 1, - "sa-east-1": 1, - "us-east-1": 1, - "us-east-2": 1, - "us-west-1": 1, - "us-west-2": 1, - "ap-east-1": 1, - "ap-south-1": 1, - "ap-northeast-1": 1, - "ap-northeast-2": 1, - "ap-northeast-3": 1, - "ap-southeast-1": 1, - "ap-southeast-2": 1, - "ap-southeast-3": 1, - "eu-south-1": 1, - "eu-south-2": 1, - "af-south-1": 1, - "me-south-1": 1 + "pgsql-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "redis-igbinary-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "protobuf-php-82": { + "ca-central-1": 3, + "eu-central-1": 3, + "eu-north-1": 3, + "eu-west-1": 3, + "eu-west-2": 3, + "eu-west-3": 3, + "sa-east-1": 3, + "us-east-1": 3, + "us-east-2": 3, + "us-west-1": 3, + "us-west-2": 3, + "ap-east-1": 3, + "ap-south-1": 3, + "ap-northeast-1": 3, + "ap-northeast-2": 3, + "ap-northeast-3": 3, + "ap-southeast-1": 3, + "ap-southeast-2": 3, + "ap-southeast-3": 3, + "eu-south-1": 3, + "eu-south-2": 3, + "af-south-1": 3, + "me-south-1": 3 }, - "redis-igbinary-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "protobuf-php-83": { + "ca-central-1": 3, + "eu-central-1": 3, + "eu-north-1": 3, + "eu-west-1": 3, + "eu-west-2": 3, + "eu-west-3": 3, + "sa-east-1": 3, + "us-east-1": 3, + "us-east-2": 3, + "us-west-1": 3, + "us-west-2": 3, + "ap-east-1": 3, + "ap-south-1": 3, + "ap-northeast-1": 3, + "ap-northeast-2": 3, + "ap-northeast-3": 3, + "ap-southeast-1": 3, + "ap-southeast-2": 3, + "ap-southeast-3": 3, + "eu-south-1": 3, + "eu-south-2": 3, + "af-south-1": 3, + "me-south-1": 3 }, - "redis-igbinary-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "protobuf-php-84": { + "ca-central-1": 3, + "eu-central-1": 3, + "eu-north-1": 3, + "eu-west-1": 3, + "eu-west-2": 3, + "eu-west-3": 3, + "sa-east-1": 3, + "us-east-1": 3, + "us-east-2": 3, + "us-west-1": 3, + "us-west-2": 3, + "ap-east-1": 3, + "ap-south-1": 3, + "ap-northeast-1": 3, + "ap-northeast-2": 3, + "ap-northeast-3": 3, + "ap-southeast-1": 3, + "ap-southeast-2": 3, + "ap-southeast-3": 3, + "eu-south-1": 3, + "eu-south-2": 3, + "af-south-1": 3, + "me-south-1": 3 }, - "scoutapm-php-82": { + "rdkafka-php-82": { "ca-central-1": 19, "eu-central-1": 19, "eu-north-1": 19, @@ -2343,13 +2293,13 @@ "ap-northeast-3": 19, "ap-southeast-1": 19, "ap-southeast-2": 19, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "scoutapm-php-83": { + "rdkafka-php-83": { "ca-central-1": 10, "eu-central-1": 10, "eu-north-1": 10, @@ -2368,63 +2318,88 @@ "ap-northeast-3": 10, "ap-southeast-1": 10, "ap-southeast-2": 10, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 10, "eu-south-2": 10, "af-south-1": 10, "me-south-1": 10 }, - "scoutapm-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, + "rdkafka-php-84": { + "ca-central-1": 2, + "eu-central-1": 2, + "eu-north-1": 2, + "eu-west-1": 2, + "eu-west-2": 2, + "eu-west-3": 2, + "sa-east-1": 2, + "us-east-1": 2, + "us-east-2": 2, + "us-west-1": 2, + "us-west-2": 2, + "ap-east-1": 2, + "ap-south-1": 2, + "ap-northeast-1": 2, + "ap-northeast-2": 2, + "ap-northeast-3": 2, + "ap-southeast-1": 2, + "ap-southeast-2": 2, "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "eu-south-1": 2, + "eu-south-2": 2, + "af-south-1": 2, + "me-south-1": 2 }, - "sqlsrv-php-82": { - "ca-central-1": 21, - "eu-central-1": 21, - "eu-north-1": 21, - "eu-west-1": 21, - "eu-west-2": 21, - "eu-west-3": 21, - "sa-east-1": 21, - "us-east-1": 21, - "us-east-2": 21, - "us-west-1": 21, - "us-west-2": 21, - "ap-east-1": 21, - "ap-south-1": 21, - "ap-northeast-1": 21, - "ap-northeast-2": 21, - "ap-northeast-3": 21, - "ap-southeast-1": 21, - "ap-southeast-2": 21, + "rdkafka-php-85": { + "ca-central-1": 2, + "eu-central-1": 2, + "eu-north-1": 2, + "eu-west-1": 2, + "eu-west-2": 2, + "eu-west-3": 2, + "sa-east-1": 2, + "us-east-1": 2, + "us-east-2": 2, + "us-west-1": 2, + "us-west-2": 2, + "ap-east-1": 2, + "ap-south-1": 2, + "ap-northeast-1": 2, + "ap-northeast-2": 2, + "ap-northeast-3": 2, + "ap-southeast-1": 2, + "ap-southeast-2": 2, + "ap-southeast-3": 2, + "eu-south-1": 2, + "eu-south-2": 2, + "af-south-1": 2, + "me-south-1": 2 + }, + "redis-igbinary-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, "ap-southeast-3": 3, - "eu-south-1": 21, - "eu-south-2": 19, - "af-south-1": 19, - "me-south-1": 19 + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "sqlsrv-php-83": { + "redis-igbinary-php-83": { "ca-central-1": 11, "eu-central-1": 11, "eu-north-1": 11, @@ -2449,7 +2424,7 @@ "af-south-1": 11, "me-south-1": 11 }, - "sqlsrv-php-84": { + "redis-igbinary-php-84": { "ca-central-1": 7, "eu-central-1": 7, "eu-north-1": 7, @@ -2474,332 +2449,357 @@ "af-south-1": 7, "me-south-1": 7 }, - "sqlsrv-php-85": { - "ca-central-1": 2, - "eu-central-1": 2, - "eu-north-1": 2, - "eu-west-1": 2, - "eu-west-2": 2, - "eu-west-3": 2, - "sa-east-1": 2, - "us-east-1": 2, - "us-east-2": 2, - "us-west-1": 2, - "us-west-2": 2, - "ap-east-1": 2, - "ap-south-1": 2, - "ap-northeast-1": 2, - "ap-northeast-2": 2, - "ap-northeast-3": 2, - "ap-southeast-1": 2, - "ap-southeast-2": 2, - "ap-southeast-3": 2, - "eu-south-1": 2, - "eu-south-2": 2, - "af-south-1": 2, - "me-south-1": 2 + "redis-igbinary-php-85": { + "ca-central-1": 1, + "eu-central-1": 1, + "eu-north-1": 1, + "eu-west-1": 1, + "eu-west-2": 1, + "eu-west-3": 1, + "sa-east-1": 1, + "us-east-1": 1, + "us-east-2": 1, + "us-west-1": 1, + "us-west-2": 1, + "ap-east-1": 1, + "ap-south-1": 1, + "ap-northeast-1": 1, + "ap-northeast-2": 1, + "ap-northeast-3": 1, + "ap-southeast-1": 1, + "ap-southeast-2": 1, + "ap-southeast-3": 1, + "eu-south-1": 1, + "eu-south-2": 1, + "af-south-1": 1, + "me-south-1": 1 }, - "ssh2-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "scoutapm-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, - "ssh2-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "scoutapm-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "ssh2-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "scoutapm-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "symfony-runtime-php-82": { - "ca-central-1": 15, - "eu-central-1": 15, - "eu-north-1": 15, - "eu-west-1": 15, - "eu-west-2": 15, - "eu-west-3": 15, - "sa-east-1": 15, - "us-east-1": 15, - "us-east-2": 15, - "us-west-1": 15, - "us-west-2": 15, - "ap-east-1": 15, - "ap-south-1": 15, - "ap-northeast-1": 15, - "ap-northeast-2": 15, - "ap-northeast-3": 15, - "ap-southeast-1": 15, - "ap-southeast-2": 15, - "ap-southeast-3": 2, - "eu-south-1": 15, - "eu-south-2": 13, - "af-south-1": 15, - "me-south-1": 15 + "sqlsrv-php-82": { + "ca-central-1": 22, + "eu-central-1": 22, + "eu-north-1": 22, + "eu-west-1": 22, + "eu-west-2": 22, + "eu-west-3": 22, + "sa-east-1": 22, + "us-east-1": 22, + "us-east-2": 22, + "us-west-1": 22, + "us-west-2": 22, + "ap-east-1": 22, + "ap-south-1": 22, + "ap-northeast-1": 22, + "ap-northeast-2": 22, + "ap-northeast-3": 22, + "ap-southeast-1": 22, + "ap-southeast-2": 22, + "ap-southeast-3": 4, + "eu-south-1": 22, + "eu-south-2": 20, + "af-south-1": 20, + "me-south-1": 20 + }, + "sqlsrv-php-83": { + "ca-central-1": 12, + "eu-central-1": 12, + "eu-north-1": 12, + "eu-west-1": 12, + "eu-west-2": 12, + "eu-west-3": 12, + "sa-east-1": 12, + "us-east-1": 12, + "us-east-2": 12, + "us-west-1": 12, + "us-west-2": 12, + "ap-east-1": 12, + "ap-south-1": 12, + "ap-northeast-1": 12, + "ap-northeast-2": 12, + "ap-northeast-3": 12, + "ap-southeast-1": 12, + "ap-southeast-2": 12, + "ap-southeast-3": 4, + "eu-south-1": 12, + "eu-south-2": 12, + "af-south-1": 12, + "me-south-1": 12 }, - "symfony-runtime-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "sqlsrv-php-84": { + "ca-central-1": 8, + "eu-central-1": 8, + "eu-north-1": 8, + "eu-west-1": 8, + "eu-west-2": 8, + "eu-west-3": 8, + "sa-east-1": 8, + "us-east-1": 8, + "us-east-2": 8, + "us-west-1": 8, + "us-west-2": 8, + "ap-east-1": 8, + "ap-south-1": 8, + "ap-northeast-1": 8, + "ap-northeast-2": 8, + "ap-northeast-3": 8, + "ap-southeast-1": 8, + "ap-southeast-2": 8, + "ap-southeast-3": 4, + "eu-south-1": 8, + "eu-south-2": 8, + "af-south-1": 8, + "me-south-1": 8 }, - "symfony-runtime-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "sqlsrv-php-85": { + "ca-central-1": 3, + "eu-central-1": 3, + "eu-north-1": 3, + "eu-west-1": 3, + "eu-west-2": 3, + "eu-west-3": 3, + "sa-east-1": 3, + "us-east-1": 3, + "us-east-2": 3, + "us-west-1": 3, + "us-west-2": 3, + "ap-east-1": 3, + "ap-south-1": 3, + "ap-northeast-1": 3, + "ap-northeast-2": 3, + "ap-northeast-3": 3, + "ap-southeast-1": 3, + "ap-southeast-2": 3, + "ap-southeast-3": 3, + "eu-south-1": 3, + "eu-south-2": 3, + "af-south-1": 3, + "me-south-1": 3 }, - "tideways-php-82": { - "ca-central-1": 18, - "eu-central-1": 18, - "eu-north-1": 18, - "eu-west-1": 18, - "eu-west-2": 18, - "eu-west-3": 18, - "sa-east-1": 18, - "us-east-1": 18, - "us-east-2": 18, - "us-west-1": 18, - "us-west-2": 18, - "ap-east-1": 18, - "ap-south-1": 18, - "ap-northeast-1": 18, - "ap-northeast-2": 18, - "ap-northeast-3": 18, - "ap-southeast-1": 18, - "ap-southeast-2": 18, - "ap-southeast-3": 2, - "eu-south-1": 18, - "eu-south-2": 18, + "ssh2-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, "af-south-1": 18, "me-south-1": 18 }, - "tideways-php-83": { - "ca-central-1": 13, - "eu-central-1": 13, - "eu-north-1": 13, - "eu-west-1": 13, - "eu-west-2": 13, - "eu-west-3": 13, - "sa-east-1": 13, - "us-east-1": 13, - "us-east-2": 13, - "us-west-1": 13, - "us-west-2": 13, - "ap-east-1": 13, - "ap-south-1": 13, - "ap-northeast-1": 13, - "ap-northeast-2": 13, - "ap-northeast-3": 13, - "ap-southeast-1": 13, - "ap-southeast-2": 13, - "ap-southeast-3": 2, - "eu-south-1": 13, - "eu-south-2": 13, - "af-south-1": 13, - "me-south-1": 13 - }, - "tideways-php-84": { - "ca-central-1": 9, - "eu-central-1": 9, - "eu-north-1": 9, - "eu-west-1": 9, - "eu-west-2": 9, - "eu-west-3": 9, - "sa-east-1": 9, - "us-east-1": 9, - "us-east-2": 9, - "us-west-1": 9, - "us-west-2": 9, - "ap-east-1": 9, - "ap-south-1": 9, - "ap-northeast-1": 9, - "ap-northeast-2": 9, - "ap-northeast-3": 9, - "ap-southeast-1": 9, - "ap-southeast-2": 9, - "ap-southeast-3": 2, - "eu-south-1": 9, - "eu-south-2": 9, - "af-south-1": 9, - "me-south-1": 9 - }, - "uuid-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "ssh2-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, - "uuid-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "ssh2-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, - "uuid-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "symfony-runtime-php-82": { + "ca-central-1": 16, + "eu-central-1": 16, + "eu-north-1": 16, + "eu-west-1": 16, + "eu-west-2": 16, + "eu-west-3": 16, + "sa-east-1": 16, + "us-east-1": 16, + "us-east-2": 16, + "us-west-1": 16, + "us-west-2": 16, + "ap-east-1": 16, + "ap-south-1": 16, + "ap-northeast-1": 16, + "ap-northeast-2": 16, + "ap-northeast-3": 16, + "ap-southeast-1": 16, + "ap-southeast-2": 16, + "ap-southeast-3": 3, + "eu-south-1": 16, + "eu-south-2": 14, + "af-south-1": 16, + "me-south-1": 16 }, - "xdebug-php-82": { + "symfony-runtime-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 + }, + "symfony-runtime-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "tideways-php-82": { "ca-central-1": 19, "eu-central-1": 19, "eu-north-1": 19, @@ -2818,163 +2818,38 @@ "ap-northeast-3": 19, "ap-southeast-1": 19, "ap-southeast-2": 19, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 19, - "eu-south-2": 16, - "af-south-1": 18, - "me-south-1": 18 - }, - "xdebug-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, - "xdebug-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 - }, - "xlswriter-php-82": { - "ca-central-1": 15, - "eu-central-1": 15, - "eu-north-1": 15, - "eu-west-1": 15, - "eu-west-2": 15, - "eu-west-3": 15, - "sa-east-1": 15, - "us-east-1": 15, - "us-east-2": 15, - "us-west-1": 15, - "us-west-2": 15, - "ap-east-1": 15, - "ap-south-1": 15, - "ap-northeast-1": 15, - "ap-northeast-2": 15, - "ap-northeast-3": 15, - "ap-southeast-1": 15, - "ap-southeast-2": 15, - "ap-southeast-3": 2, - "eu-south-1": 15, - "eu-south-2": 15, - "af-south-1": 15, - "me-south-1": 15 - }, - "xlswriter-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 - }, - "xlswriter-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "eu-south-2": 19, + "af-south-1": 19, + "me-south-1": 19 }, - "xlswriter-php-85": { - "ca-central-1": 1, - "eu-central-1": 1, - "eu-north-1": 1, - "eu-west-1": 1, - "eu-west-2": 1, - "eu-west-3": 1, - "sa-east-1": 1, - "us-east-1": 1, - "us-east-2": 1, - "us-west-1": 1, - "us-west-2": 1, - "ap-east-1": 1, - "ap-south-1": 1, - "ap-northeast-1": 1, - "ap-northeast-2": 1, - "ap-northeast-3": 1, - "ap-southeast-1": 1, - "ap-southeast-2": 1, - "ap-southeast-3": 1, - "eu-south-1": 1, - "eu-south-2": 1, - "af-south-1": 1, - "me-south-1": 1 + "tideways-php-83": { + "ca-central-1": 14, + "eu-central-1": 14, + "eu-north-1": 14, + "eu-west-1": 14, + "eu-west-2": 14, + "eu-west-3": 14, + "sa-east-1": 14, + "us-east-1": 14, + "us-east-2": 14, + "us-west-1": 14, + "us-west-2": 14, + "ap-east-1": 14, + "ap-south-1": 14, + "ap-northeast-1": 14, + "ap-northeast-2": 14, + "ap-northeast-3": 14, + "ap-southeast-1": 14, + "ap-southeast-2": 14, + "ap-southeast-3": 3, + "eu-south-1": 14, + "eu-south-2": 14, + "af-south-1": 14, + "me-south-1": 14 }, - "xmlrpc-php-82": { + "tideways-php-84": { "ca-central-1": 10, "eu-central-1": 10, "eu-north-1": 10, @@ -2993,135 +2868,410 @@ "ap-northeast-3": 10, "ap-southeast-1": 10, "ap-southeast-2": 10, - "ap-southeast-3": 2, + "ap-southeast-3": 3, "eu-south-1": 10, "eu-south-2": 10, "af-south-1": 10, "me-south-1": 10 }, + "uuid-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 + }, + "uuid-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 + }, + "uuid-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "xdebug-php-82": { + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 17, + "af-south-1": 19, + "me-south-1": 19 + }, + "xdebug-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 + }, + "xdebug-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "xlswriter-php-82": { + "ca-central-1": 16, + "eu-central-1": 16, + "eu-north-1": 16, + "eu-west-1": 16, + "eu-west-2": 16, + "eu-west-3": 16, + "sa-east-1": 16, + "us-east-1": 16, + "us-east-2": 16, + "us-west-1": 16, + "us-west-2": 16, + "ap-east-1": 16, + "ap-south-1": 16, + "ap-northeast-1": 16, + "ap-northeast-2": 16, + "ap-northeast-3": 16, + "ap-southeast-1": 16, + "ap-southeast-2": 16, + "ap-southeast-3": 3, + "eu-south-1": 16, + "eu-south-2": 16, + "af-south-1": 16, + "me-south-1": 16 + }, + "xlswriter-php-83": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 + }, + "xlswriter-php-84": { + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 + }, + "xlswriter-php-85": { + "ca-central-1": 2, + "eu-central-1": 2, + "eu-north-1": 2, + "eu-west-1": 2, + "eu-west-2": 2, + "eu-west-3": 2, + "sa-east-1": 2, + "us-east-1": 2, + "us-east-2": 2, + "us-west-1": 2, + "us-west-2": 2, + "ap-east-1": 2, + "ap-south-1": 2, + "ap-northeast-1": 2, + "ap-northeast-2": 2, + "ap-northeast-3": 2, + "ap-southeast-1": 2, + "ap-southeast-2": 2, + "ap-southeast-3": 2, + "eu-south-1": 2, + "eu-south-2": 2, + "af-south-1": 2, + "me-south-1": 2 + }, + "xmlrpc-php-82": { + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 + }, "xmlrpc-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, "xmlrpc-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 }, "yaml-php-82": { - "ca-central-1": 19, - "eu-central-1": 19, - "eu-north-1": 19, - "eu-west-1": 19, - "eu-west-2": 19, - "eu-west-3": 19, - "sa-east-1": 19, - "us-east-1": 19, - "us-east-2": 19, - "us-west-1": 19, - "us-west-2": 19, - "ap-east-1": 19, - "ap-south-1": 19, - "ap-northeast-1": 19, - "ap-northeast-2": 19, - "ap-northeast-3": 19, - "ap-southeast-1": 19, - "ap-southeast-2": 19, - "ap-southeast-3": 2, - "eu-south-1": 19, - "eu-south-2": 15, - "af-south-1": 17, - "me-south-1": 17 + "ca-central-1": 20, + "eu-central-1": 20, + "eu-north-1": 20, + "eu-west-1": 20, + "eu-west-2": 20, + "eu-west-3": 20, + "sa-east-1": 20, + "us-east-1": 20, + "us-east-2": 20, + "us-west-1": 20, + "us-west-2": 20, + "ap-east-1": 20, + "ap-south-1": 20, + "ap-northeast-1": 20, + "ap-northeast-2": 20, + "ap-northeast-3": 20, + "ap-southeast-1": 20, + "ap-southeast-2": 20, + "ap-southeast-3": 3, + "eu-south-1": 20, + "eu-south-2": 16, + "af-south-1": 18, + "me-south-1": 18 }, "yaml-php-83": { - "ca-central-1": 10, - "eu-central-1": 10, - "eu-north-1": 10, - "eu-west-1": 10, - "eu-west-2": 10, - "eu-west-3": 10, - "sa-east-1": 10, - "us-east-1": 10, - "us-east-2": 10, - "us-west-1": 10, - "us-west-2": 10, - "ap-east-1": 10, - "ap-south-1": 10, - "ap-northeast-1": 10, - "ap-northeast-2": 10, - "ap-northeast-3": 10, - "ap-southeast-1": 10, - "ap-southeast-2": 10, - "ap-southeast-3": 2, - "eu-south-1": 10, - "eu-south-2": 10, - "af-south-1": 10, - "me-south-1": 10 + "ca-central-1": 11, + "eu-central-1": 11, + "eu-north-1": 11, + "eu-west-1": 11, + "eu-west-2": 11, + "eu-west-3": 11, + "sa-east-1": 11, + "us-east-1": 11, + "us-east-2": 11, + "us-west-1": 11, + "us-west-2": 11, + "ap-east-1": 11, + "ap-south-1": 11, + "ap-northeast-1": 11, + "ap-northeast-2": 11, + "ap-northeast-3": 11, + "ap-southeast-1": 11, + "ap-southeast-2": 11, + "ap-southeast-3": 3, + "eu-south-1": 11, + "eu-south-2": 11, + "af-south-1": 11, + "me-south-1": 11 }, "yaml-php-84": { - "ca-central-1": 6, - "eu-central-1": 6, - "eu-north-1": 6, - "eu-west-1": 6, - "eu-west-2": 6, - "eu-west-3": 6, - "sa-east-1": 6, - "us-east-1": 6, - "us-east-2": 6, - "us-west-1": 6, - "us-west-2": 6, - "ap-east-1": 6, - "ap-south-1": 6, - "ap-northeast-1": 6, - "ap-northeast-2": 6, - "ap-northeast-3": 6, - "ap-southeast-1": 6, - "ap-southeast-2": 6, - "ap-southeast-3": 2, - "eu-south-1": 6, - "eu-south-2": 6, - "af-south-1": 6, - "me-south-1": 6 + "ca-central-1": 7, + "eu-central-1": 7, + "eu-north-1": 7, + "eu-west-1": 7, + "eu-west-2": 7, + "eu-west-3": 7, + "sa-east-1": 7, + "us-east-1": 7, + "us-east-2": 7, + "us-west-1": 7, + "us-west-2": 7, + "ap-east-1": 7, + "ap-south-1": 7, + "ap-northeast-1": 7, + "ap-northeast-2": 7, + "ap-northeast-3": 7, + "ap-southeast-1": 7, + "ap-southeast-2": 7, + "ap-southeast-3": 3, + "eu-south-1": 7, + "eu-south-2": 7, + "af-south-1": 7, + "me-south-1": 7 } } \ No newline at end of file