cloudflare/Cloudflare-WordPress

Public

mirrored fromhttps://github.com/cloudflare/Cloudflare-WordPress

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dependabot/composer/phpunit/phpunit-9.6.33

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.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}