diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2aa3dfc --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Listen for XDebug", + "type": "php", + "request": "launch", + "port": 9055 + }, + { + "name": "Launch currently open script", + "type": "php", + "request": "launch", + "program": "${file}", + "cwd": "${fileDirname}", + "port": 9055 + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ab4426c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "php.suggest.basic": false, + "php.validate.executablePath": "/usr/bin/php" +} \ No newline at end of file diff --git a/examples/test.php b/examples/test.php new file mode 100644 index 0000000..e4a8deb --- /dev/null +++ b/examples/test.php @@ -0,0 +1,8 @@ + \ No newline at end of file