diff options
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}" |