我需要有关我的 Homestead 配置的帮助。目前我正在运行一个使用 Laravel/Homestead 的开发项目,该项目在 VirtualBox Vagrant 上运行。我安装了 PHP 8.0.2 和 Xdebug 3.0.2 和 ZendOpCache v 8.0.2 但不幸的是我无法连接安装在我的 Windows 上的 VSCODE(IDE 和 Homestead 都安装在 Windows 上)
我的 Homestead IP 地址是 192.168.56.17,主机是 192.168.56.1
这是我的 XDebug 配置,我将 xdebug.ini 放在/etc/php/8.0/cli/conf.d/20-xdebug.ini
zend_extension = xdebug.so
xdebug.mode = debug
xdebug.idekey = VSCODE
xdebug.max_nesting_level = 512
xdebug.start_with_request = yes
xdebug.client_port = 9003
xdebug.client_host = 192.168.56.1
这是我的 VSCODE launch.json
{
// 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": 9003,
"stopOnEntry": false,
"log": true,
"pathMappings": {"/home/vagrant/code/project" : "${workspaceRoot}"}
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9003
}
]
}
请在这方面需要帮助