cloudflare/Cloudflare-WordPress
Publicmirrored fromhttps://github.com/cloudflare/Cloudflare-WordPress
.vscode/launch.json
21lines · modecode
| 1 | { |
| 2 | "version": "0.2.0", |
| 3 | "configurations": [ |
| 4 | { |
| 5 | "name": "xdebug", |
| 6 | "type": "php", |
| 7 | "request": "launch", |
| 8 | "port": 9003, |
| 9 | "hostname": "localhost", |
| 10 | "pathMappings": { |
| 11 | "/var/www/html/wp-content/plugins/cloudflare": "${workspaceFolder}", |
| 12 | }, |
| 13 | "xdebugSettings": { |
| 14 | "max_data": 65535, |
| 15 | "show_hidden": 1, |
| 16 | "max_children": 100, |
| 17 | "max_depth": 5 |
| 18 | } |
| 19 | } |
| 20 | ] |
| 21 | } |