This repository has been archived on 2021-08-17. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
TaskBoard/.vscode/launch.json
2020-09-05 14:22:57 -04:00

20 lines
381 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000,
"log": true,
"externalConsole": false,
"pathMappings": {
"/var/www/html/api": "${workspaceRoot}/src/api"
},
"ignore": [
"**/vendor/**/*.php"
]
}
]
}