From 08fe84de35221d107d581654b07f84aed736cc3c Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Tue, 20 Jun 2017 08:38:06 +0200 Subject: [PATCH] Add launch.json --- .vscode/launch.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0f77709 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,29 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Listen for XDebug", + "type": "php", + "request": "launch", + "port": 9000 + }, + { + "name": "Launch currently open script", + "type": "php", + "request": "launch", + "program": "${file}", + "cwd": "${fileDirname}", + "port": 9000 + }, + { + "name": "PHPUnit", + "type": "php", + "request": "launch", + "program": "${workspaceRoot}/vendor/phpunit/phpunit/phpunit", + "cwd": "${workspaceRoot}", + "args": [ + // "--filter", "CompletionTest" + ] + } + ] +}