From 89f681acc735fc6fe98c2186857c233e760307f3 Mon Sep 17 00:00:00 2001 From: yaegassy Date: Thu, 9 Jul 2020 14:54:36 +0900 Subject: [PATCH] Added missing docs based on the vscode-intelephense update --- gettingStarted.md | 11 ++++++++++- installation.md | 32 +++++++++++++++++++++++++++++++- 2 files changed, 41 insertions(+), 2 deletions(-) diff --git a/gettingStarted.md b/gettingStarted.md index c5bade5..ccf1787 100644 --- a/gettingStarted.md +++ b/gettingStarted.md @@ -56,7 +56,8 @@ There may be files you do not want to indexed by Intelephense. It is important i "**/node_modules/**", "**/bower_components/**", "**/vendor/**/{Tests,tests}/**", - "**/.history/**" + "**/.history/**", + "**/vendor/**/vendor/**" ], "description": "Configure glob patterns to exclude certain files and folders fro all language server features. Inherits from files.exclude.", "scope": "resource" @@ -82,6 +83,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols "apache", "apcu", "bcmath", + "blackfire", "bz2", "calendar", "cassandra", @@ -94,7 +96,9 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols "curl", "date", "dba", + "decimal", "dom", + "ds", "enchant", "Ev", "event", @@ -133,6 +137,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols "libsodium", "libxml", "lua", + "lzf", "mailparse", "mapscript", "mbstring", @@ -144,6 +149,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols "ming", "mongo", "mongodb", + "mosquitto-php", "mqseries", "msgpack", "mssql", @@ -169,6 +175,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols "pdo_sqlite", "pgsql", "Phar", + "phpdbg", "posix", "pspell", "pthreads", @@ -180,6 +187,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols "redis", "Reflection", "regex", + "rpminfo", "rrd", "SaxonC", "session", @@ -197,6 +205,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols "sqlsrv", "ssh2", "standard", + "stats", "stomp", "suhosin", "superglobals", diff --git a/installation.md b/installation.md index c278885..45c71d2 100644 --- a/installation.md +++ b/installation.md @@ -160,7 +160,8 @@ interface InitialisationOptions { "**/node_modules/**", "**/bower_components/**", "**/vendor/**/{Tests,tests}/**", - "**/.history/**" + "**/.history/**", + "**/vendor/**/vendor/**" ], "description": "Configure glob patterns to exclude certain files and folders from all language server features. Inherits from files.exclude.", "scope": "resource" @@ -174,6 +175,7 @@ interface InitialisationOptions { "apache", "apcu", "bcmath", + "blackfire", "bz2", "calendar", "cassandra", @@ -186,7 +188,9 @@ interface InitialisationOptions { "curl", "date", "dba", + "decimal", "dom", + "ds", "enchant", "Ev", "event", @@ -225,6 +229,7 @@ interface InitialisationOptions { "libsodium", "libxml", "lua", + "lzf", "mailparse", "mapscript", "mbstring", @@ -236,6 +241,7 @@ interface InitialisationOptions { "ming", "mongo", "mongodb", + "mosquitto-php", "mqseries", "msgpack", "mssql", @@ -261,6 +267,7 @@ interface InitialisationOptions { "pdo_sqlite", "pgsql", "Phar", + "phpdbg", "posix", "pspell", "pthreads", @@ -272,6 +279,7 @@ interface InitialisationOptions { "redis", "Reflection", "regex", + "rpminfo", "rrd", "SaxonC", "session", @@ -289,6 +297,7 @@ interface InitialisationOptions { "sqlsrv", "ssh2", "standard", + "stats", "stomp", "suhosin", "superglobals", @@ -594,6 +603,27 @@ interface InitialisationOptions { "description": "Enables reporting of various language constraint errors.", "scope": "window" }, + "intelephense.diagnostics.implementationErrors": { + "type": "boolean", + "default": true, + "description": "Enables reporting of problems associated with method and class implementations. For example, unimplemented methods or method signature incompatibilities.", + "scope": "window" + }, + "intelephense.runtime": { + "type": "string", + "description": "Path to a Node.js executable. Use this if you wish to use a different version of Node.js. Defaults to Node.js shipped with VSCode.", + "scope": "machine" + }, + "intelephense.maxMemory": { + "type": "number", + "description": "Maximum memory (in MB) that the server should use. On some systems this may only have effect when runtime has been set. Minimum 256.", + "scope": "window" + }, + "intelephense.licenceKey": { + "type": "string", + "description": "DEPRECATED. Don't use this. Go to command palette and search for enter licence key.", + "scope": "application" + }, "intelephense.telemetry.enabled": { "type": "boolean", "description": "Anonymous usage and crash data will be sent to Azure Application Insights. Inherits from telemetry.enableTelemetry.",