Added php.executablePath to package.json contributes.configuration

pull/105/head
Keith Lokken 2017-04-14 12:04:46 -05:00
parent e84459db39
commit 7c2964d3bd
1 changed files with 10 additions and 0 deletions

View File

@ -57,12 +57,22 @@
}, },
"contributes": { "contributes": {
"configuration": { "configuration": {
"type": "object",
"title": "PHP IntelliSense",
"properties": { "properties": {
"php.memoryLimit": { "php.memoryLimit": {
"type": "string", "type": "string",
"default": "-1", "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).", "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]?$" "pattern": "^\\d+[KMG]?$"
},
"php.executablePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "The path to a PHP 7+ executable."
} }
} }
} }