Add VScode settings
This commit is contained in:
parent
e6d42c4aaa
commit
efc3802eaa
2 changed files with 26 additions and 0 deletions
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"intelephense.environment.phpVersion": "8.3"
|
||||||
|
}
|
||||||
23
.vscode/tasks.json
vendored
Normal file
23
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "DDEV: Enable Xdebug",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "ddev xdebug on",
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "silent",
|
||||||
|
"close": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "DDEV: Disable Xdebug",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "ddev xdebug off",
|
||||||
|
"presentation": {
|
||||||
|
"reveal": "silent",
|
||||||
|
"close": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue