aboutsummaryrefslogtreecommitdiff
path: root/src/php/devcontainer-feature.json
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2022-08-17 22:48:38 +0300
committerGitHub <noreply@github.com>2022-08-17 22:48:38 +0300
commita630e92c468c241fa029f278e4d7a0ac96142c76 (patch)
treeebc96705a0dd8be842fb097dcb494155020fd110 /src/php/devcontainer-feature.json
parent4ecc275a8d199cdce98cd462fee612d7f687efe4 (diff)
Move extensions and settings under customizations.vscode (#97)
* move extensions and settings under customizations * nit * bump versions
Diffstat (limited to 'src/php/devcontainer-feature.json')
-rw-r--r--src/php/devcontainer-feature.json18
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}"