| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Launch built-in server and debug",
- "type": "php",
- "request": "launch",
- "runtimeArgs": [
- "-S",
- "localhost:8000",
- "-t",
- "."
- ],
- "port": 9003,
- "serverReadyAction": {
- "action": "openExternally"
- }
- },
- {
- "name": "Debug current script in console",
- "type": "php",
- "request": "launch",
- "program": "${file}",
- "cwd": "${fileDirname}",
- "externalConsole": false,
- "port": 9003
- },
- {
- "name": "Listen for Xdebug",
- "type": "php",
- "request": "launch",
- "port": 9003
- }
- ]
- }
|