Xdebug не распознает точку останова - PullRequest
0 голосов
/ 17 июня 2020
  • PHP версия 7.1
  • Ubuntu 18.04
  • Laravel 7.0
  • Путь приложения: /Desktop/P10Software/laravel7

Отображение пути верное или не может его исправить

    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9000,
            "pathMappings": {
                "/Desktop/P10Software/laravel7/": "${workspaceFolder}/"
            },
            "xdebugSettings": {
                "max_data": 65535,
                "show_hidden": 1,
                "max_children": 100,
                "max_depth": 5
            }
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9000
        }
    ]
}
...