diff --git a/package.json b/package.json index 4ce3512..3a8a445 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." } } }