Added php.executablePath to package.json contributes.configuration (#105)

pull/123/head
lokken 2017-05-05 02:29:42 -05:00 committed by Felix Becker
parent 5ffc23549c
commit 79b49b5506
1 changed files with 10 additions and 0 deletions

View File

@ -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."
}
}
}