Skip to content

Commit 6cb9408

Browse files
committed
Add .vscode settings.
1 parent 5e4fba8 commit 6cb9408

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.vscode/launch.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch application",
6+
"type": "php",
7+
"request": "launch",
8+
"program": "${workspaceFolder}/index.php",
9+
"cwd": "${workspaceFolder}",
10+
"port": 9000
11+
},
12+
{
13+
"name": "Listen for XDebug",
14+
"type": "php",
15+
"request": "launch",
16+
"port": 9000
17+
},
18+
{
19+
"name": "Launch currently open script",
20+
"type": "php",
21+
"request": "launch",
22+
"program": "${file}",
23+
"cwd": "${fileDirname}",
24+
"port": 9000
25+
}
26+
]
27+
}

0 commit comments

Comments
 (0)