Hello All, Anybody configured xdebug in vs code?
# docker
l
Hello All, Anybody configured xdebug in vs code?
s
I did it
Here is my config
Copy code
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9003,
            "runtimeExecutable": "/usr/bin/php",
            "pathMappings": {
                "/data": "/home/artur/Projects/spryker-btc",
            },
            "log": true,
            "xdebugSettings": {
                "max_data": 65535,
                "show_hidden": 1,
                "max_children": 100,
                "max_depth": 5
            }
        },
    ]
}
a
oh dang I dinked around with this a bit in the beginning, didn’t get it working and went to phpstorm, but that looks decent, what are you using for the db connection?
s
I just installed db client on my system (adminer) and connecting through that client
a
cool, thanks 🙏
🤘 1