Create a php version of page template

This commit is contained in:
2024-07-30 23:00:02 +10:00
parent a75f4ca936
commit cd9135e3bd
6 changed files with 145 additions and 0 deletions

14
php-template/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch application",
"type": "php",
"request": "launch",
"program": "${workspaceFolder}/main.php",
"args": ["${workspaceFolder}/example-input"],
"cwd": "${workspaceFolder}",
"port": 9000
}
]
}