Files
php/.devcontainer/devcontainer.json

21 lines
355 B
JSON
Raw Normal View History

2019-05-01 07:53:21 -07:00
{
"name": "PHP",
2024-06-06 19:49:25 +00:00
"image": "mcr.microsoft.com/devcontainers/php:1-8.3",
2022-05-17 12:42:03 -07:00
"customizations": {
"vscode": {
"settings": {},
2022-05-17 12:42:03 -07:00
"extensions": [
"streetsidesoftware.code-spell-checker"
2022-05-17 12:42:03 -07:00
]
}
2019-12-11 15:47:41 +00:00
},
2021-03-16 16:19:56 +00:00
"portsAttributes": {
"8000": {
"label": "Hello Remote World",
"onAutoForward": "notify"
}
2025-10-27 20:06:12 +08:00
},
2021-04-16 13:47:43 -07:00
2025-10-27 20:06:12 +08:00
"postAttachCommand": "php -S 0.0.0.0:8000"
2019-12-11 15:47:41 +00:00
}