|
@@ -0,0 +1,26 @@
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+ "version": "0.2.0",
|
|
|
+ "configurations": [
|
|
|
+ {
|
|
|
+ "name": "Debug Server",
|
|
|
+ "type": "php",
|
|
|
+ "request": "launch",
|
|
|
+ "runtimeArgs": [
|
|
|
+ "-dxdebug.mode=debug",
|
|
|
+ "-dxdebug.start_with_request=yes",
|
|
|
+ "-S",
|
|
|
+ "localhost:0"
|
|
|
+ ],
|
|
|
+ "program": "",
|
|
|
+ "cwd": "${workspaceRoot}",
|
|
|
+ "port": 9003,
|
|
|
+ "serverReadyAction": {
|
|
|
+ "pattern": "Development Server \\(http://localhost:([0-9]+)\\) started",
|
|
|
+ "uriFormat": "http://localhost:%s",
|
|
|
+ "action": "openExternally"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|