launch.json 300 B

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