files_photospheres/.vscode/launch.json

46 строки
1.3 KiB
JSON
Исходник Обычный вид История

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
2022-05-07 10:31:03 +03:00
"port": 9003
},
{
"name": "Listen for XDebug (CLI)",
"type": "php",
"request": "launch",
"port": 9003
},
{
"name": "Run cron.php",
"type": "php",
"request": "launch",
"program": "${workspaceRoot}/../../cron.php",
"port": 9003
},
{
"name": "Debug Unittests",
"type": "php",
"request": "launch",
"program": "${workspaceRoot}/vendor/phpunit/phpunit/phpunit",
"args": ["-c", "phpunit.xml"],
"cwd": "${workspaceRoot}",
"port": 9003
},
{
"name": "Debug Integrationtests",
"type": "php",
"request": "launch",
"program": "${workspaceRoot}/vendor/phpunit/phpunit/phpunit",
"args": ["-c", "phpunit.integration.xml"],
"cwd": "${workspaceRoot}",
"port": 9003
}
]
}