This commit is contained in:
sHa
2018-06-23 12:35:31 +03:00
parent 95442e7720
commit 65ddd76b71
7 changed files with 1152 additions and 600 deletions

23
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9000,
"pathMappings": {
"/var/html": "/Users/sha/Projects/slavforest.local/html"
},
"log": false
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9000
}
]
}