27 lines
		
	
	
		
			676 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			676 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
    "version": "0.2.0",
 | 
						|
    "configurations": [
 | 
						|
        {
 | 
						|
            "name": "Launch application",
 | 
						|
            "type": "php",
 | 
						|
            "request": "launch",
 | 
						|
            "program": "${workspaceFolder}/index.php",
 | 
						|
            "cwd": "${workspaceFolder}",
 | 
						|
            "port": 9000
 | 
						|
        },
 | 
						|
        {
 | 
						|
            "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
 | 
						|
        }
 | 
						|
    ]
 | 
						|
} |