From f7e5158eac8c74630211678bb0ca6e24782cee6c Mon Sep 17 00:00:00 2001 From: Dan Hemberger <846186+hemberger@users.noreply.github.com> Date: Sat, 15 Feb 2025 11:59:04 -0800 Subject: [PATCH] api-docs: update phpDocumentor from 3.5.3 to 3.7.1 (#2025) This adds support for PHP 8.3 and 8.4. --- .github/actions/api-docs/Dockerfile | 2 +- api-docs/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/api-docs/Dockerfile b/.github/actions/api-docs/Dockerfile index 2213f0471..3cdff4051 100644 --- a/.github/actions/api-docs/Dockerfile +++ b/.github/actions/api-docs/Dockerfile @@ -1,6 +1,6 @@ FROM php:8.3.8-cli-alpine -RUN curl -L -O https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.5.3/phpDocumentor.phar +RUN curl -L -O https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.7.1/phpDocumentor.phar RUN chmod +x phpDocumentor.phar RUN mv phpDocumentor.phar /usr/local/bin/phpdoc diff --git a/api-docs/Dockerfile b/api-docs/Dockerfile index a3e198298..ef35183d1 100644 --- a/api-docs/Dockerfile +++ b/api-docs/Dockerfile @@ -1,6 +1,6 @@ FROM php:8.3.8-cli-alpine AS builder -RUN curl -L -O https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.5.3/phpDocumentor.phar +RUN curl -L -O https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.7.1/phpDocumentor.phar RUN chmod +x phpDocumentor.phar RUN mv phpDocumentor.phar /usr/local/bin/phpdoc