refactor solution to PHP through AI

This commit is contained in:
2026-07-20 14:27:17 +02:00
parent a77f6f19cf
commit 151bc70775
21 changed files with 2563 additions and 41 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM php:8.5.8-cli
RUN pecl install xdebug && docker-php-ext-enable xdebug
WORKDIR /app
EXPOSE 8000 9023
CMD ["php", "-S", "0.0.0.0:8000"]
+9
View File
@@ -0,0 +1,9 @@
#zend_extension=/usr/local/lib/php/extensions/no-debug-non-zts-20250925/xdebug.so
[xdebug]
xdebug.mode=develop,debug
xdebug.start_with_request=yes
xdebug.client_host=host.docker.internal
xdebug.client_port=9023
xdebug.log_level=0
xdebug.idekey=VSCODE