develog

[vscode] php.debug.executablePath 본문

카테고리 없음

[vscode] php.debug.executablePath

냐옴 2024. 9. 27. 16:01

 

* settings.json 파일을 연다

=> command + , 를 입력 후 'php.debug.executablePath' 검색

 

"php.debug.executablePath" 에 경로를 입력한다

=> "/usr/local/bin/php"

// settings.json

{
    "files.exclude": {
        "**/.factorypath": true
    },
    "workbench.iconTheme": "vscode-icons",
    "boot-java.rewrite.reconcile": true,
    "tabnine.experimentalAutoImports": true,
    "security.workspace.trust.untrustedFiles": "open",
    "editor.fontFamily": "'D2Coding', 'Meslo LG M for Powerline', Menlo, Monaco, 'Courier New', monospace",
    "editor.fontLigatures": false,
    "workbench.startupEditor": "none",
    "php.debug.executablePath": "/usr/local/bin/php",

 

Comments