diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/.DS_Store differ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d5631cf --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + "version": "0.2.0", + "configurations": [{ + "name": "Listen for XDebug", + "type": "php", + "request": "launch", + "port": 9000, + "log": true, + "externalConsole": false, + "pathMappings": { + "/var/www/html/pathfinder": "${workspaceRoot}/pathfinder", + } + }, + ] +} \ No newline at end of file diff --git a/static/php/error_reporting.ini b/static/php/error_reporting.ini new file mode 100644 index 0000000..d040e65 --- /dev/null +++ b/static/php/error_reporting.ini @@ -0,0 +1 @@ +error_reporting=E_ALL \ No newline at end of file diff --git a/static/php/xdebug.ini b/static/php/xdebug.ini new file mode 100644 index 0000000..7ba0f3c --- /dev/null +++ b/static/php/xdebug.ini @@ -0,0 +1,14 @@ +zend_extension=xdebug + +[xdebug] +xdebug.mode=develop,debug +xdebug.default_enable=1 +xdebug.remote_enable=1 +xdebug.remote_port=9000 +xdebug.remote_handler=dbgp +xdebug.remote_connect_back=0 +xdebug.remote_host=host.docker.internal +xdebug.idekey=VSCODE +xdebug.remote_autostart=1 +xdebug.start_with_request=yes +xdebug.log=/tmp/xdebug.log \ No newline at end of file