Created
August 14, 2021 01:02
-
-
Save LucianoCharlesdeSouza/adc4c7d822b29c60e66632db7c0e27a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use o IntelliSense para saber mais sobre os atributos possíveis. | |
// Focalizar para exibir as descrições dos atributos existentes. | |
// Para obter mais informações, acesse: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "XDebug in Docker", | |
"type": "php", | |
"request": "launch", | |
"hostname": "0.0.0.0", | |
"port": 9003, | |
"log": true, | |
"pathMappings": { | |
"/var/www/app": "${workspaceFolder}" | |
}, | |
"ignore": ["**/vendor/**/*.php"], | |
"xdebugSettings": { | |
"max_children": 10000, | |
"max_data": 10000, | |
"show_hidden": 1 | |
} | |
}, | |
{ | |
"name": "Launch currently open script", | |
"type": "php", | |
"request": "launch", | |
"program": "${file}", | |
"cwd": "${fileDirname}", | |
"port": 9000 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment