Skip to content

Commit 04433f2

Browse files
claudef3l1x
authored andcommitted
Add PHP custom config for variables_order
Creates /etc/php/8.5/cli/conf.d/99-coder.ini with variables_order = "EGPCS". https://claude.ai/code/session_01RsWUxQjM1mRSWiJAj6DuzA
1 parent 969a469 commit 04433f2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fx/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update -y && \
2020
apt-get install -y --no-install-recommends gh && \
2121
apt-get clean && rm -rf /var/lib/apt/lists/*
2222

23+
# PHP: custom config
24+
RUN echo 'variables_order = "EGPCS"' > /etc/php/8.5/cli/conf.d/99-coder.ini
25+
2326
# Composer (system-wide)
2427
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
2528

0 commit comments

Comments
 (0)