Add completions
Some checks failed
CI / Tests (push) Failing after 44s
CI / Deploy (push) Has been skipped

This commit is contained in:
2025-10-18 17:18:10 +02:00
parent b66d2f9e86
commit 554f28b788
3 changed files with 185 additions and 1 deletions

View File

@@ -32,7 +32,7 @@ RUN set -eux; \
opcache \
zip \
gd \
excimer-1.2.3 \
excimer \
;
# https://getcomposer.org/doc/03-cli.md#composer-allow-superuser
@@ -60,6 +60,12 @@ FROM frankenphp_base AS frankenphp_dev
ENV APP_ENV=dev XDEBUG_MODE=off
RUN apt-get install -y --no-install-recommends \
bash-completion \
COPY --link frankenphp/console-complete.bash /usr/share/bash-completion/completions/console
COPY --link frankenphp/composer-complete.bash /usr/share/bash-completion/completions/composer
RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"
RUN set -eux; \