From ddb82035e0c6e3cc69c5e0870d2f8809864e2a6d Mon Sep 17 00:00:00 2001 From: Brigit Murtaugh Date: Tue, 17 May 2022 12:42:03 -0700 Subject: [PATCH] Add customizations (#19) --- .devcontainer/devcontainer.json | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9d91f9d..0e445e2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,19 +12,25 @@ "NODE_VERSION": "lts/*" } }, - - // Set *default* container specific settings.json values on container create. - "settings": { - "php.validate.executablePath": "/usr/local/bin/php" + + // Configure tool-specific properties. + "customizations": { + // Configure properties specific to VS Code. + "vscode": { + // Set *default* container specific settings.json values on container create. + "settings": { + "php.validate.executablePath": "/usr/local/bin/php" + }, + + // Add the IDs of extensions you want installed when the container is created. + "extensions": [ + "felixfbecker.php-debug", + "bmewburn.vscode-intelephense-client", + "mrmlnc.vscode-apache" + ] + } }, - // Add the IDs of extensions you want installed when the container is created. - "extensions": [ - "felixfbecker.php-debug", - "bmewburn.vscode-intelephense-client", - "mrmlnc.vscode-apache" - ], - // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [8080],