Files
php/.devcontainer/devcontainer.json
2025-10-27 20:06:12 +08:00

21 lines
355 B
JSON

{
"name": "PHP",
"image": "mcr.microsoft.com/devcontainers/php:1-8.3",
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"streetsidesoftware.code-spell-checker"
]
}
},
"portsAttributes": {
"8000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
},
"postAttachCommand": "php -S 0.0.0.0:8000"
}