.devcontainer/devcontainer.json
{
"name": "Bitcoin Currency Converter PHP",
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
"features": {
"ghcr.io/shyim/devcontainers-features/php:latest": {
"installComposer": true,
// Change PHP version to 8.0 || 8.1 || 8.2 || 8.3 || 8.4 to test
"version": "8.0",
"disableAllExtensions": true,
"extensionsExtra": "mbstring xml curl"
}
},
"postCreateCommand": "echo '. $(pwd)/.devcontainer/aliases.sh' >> ~/.bashrc",
"customizations": {
"vscode": {
"extensions": [
"GitHub.vscode-github-actions",
"bmewburn.vscode-intelephense-client"
],
"settings": {
"intelephense.environment.phpVersion": "8.0"
}
}
}
}