From 7c2964d3bd7dca3812ac210c44ba392a0d66ca8f Mon Sep 17 00:00:00 2001 From: Keith Lokken Date: Fri, 14 Apr 2017 12:04:46 -0500 Subject: [PATCH] Added php.executablePath to package.json contributes.configuration --- package.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/package.json b/package.json index c4ff1e2..db7be86 100644 --- a/package.json +++ b/package.json @@ -57,12 +57,22 @@ }, "contributes": { "configuration": { + "type": "object", + "title": "PHP IntelliSense", "properties": { "php.memoryLimit": { "type": "string", "default": "-1", "description": "The memory limit of the php language server. [Number][K|M|G]. Use '-1' to allow unlimited use of the RAM(default).", "pattern": "^\\d+[KMG]?$" + }, + "php.executablePath": { + "type": [ + "string", + "null" + ], + "default": null, + "description": "The path to a PHP 7+ executable." } } }