diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-17 22:48:38 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 22:48:38 +0300 |
commit | a630e92c468c241fa029f278e4d7a0ac96142c76 (patch) | |
tree | ebc96705a0dd8be842fb097dcb494155020fd110 /src/php | |
parent | 4ecc275a8d199cdce98cd462fee612d7f687efe4 (diff) |
Move extensions and settings under customizations.vscode (#97)
* move extensions and settings under customizations
* nit
* bump versions
Diffstat (limited to 'src/php')
-rw-r--r-- | src/php/devcontainer-feature.json | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/php/devcontainer-feature.json b/src/php/devcontainer-feature.json index 30d9002..21089a5 100644 --- a/src/php/devcontainer-feature.json +++ b/src/php/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "php", - "version": "1.0.1", + "version": "1.0.2", "name": "PHP", "options": { "version": { @@ -18,12 +18,16 @@ "description": "Install PHP Composer?" } }, - "extensions": [ - "xdebug.php-debug", - "bmewburn.vscode-intelephense-client", - "xdebug.php-pack", - "devsense.phptools-vscode" - ], + "customizations": { + "vscode": { + "extensions": [ + "xdebug.php-debug", + "bmewburn.vscode-intelephense-client", + "xdebug.php-pack", + "devsense.phptools-vscode" + ] + } + }, "containerEnv": { "PHP_PATH": "/usr/local/php/current", "PATH": "${PHP_PATH}/bin:${PATH}" |