Skip to content

Commit

Permalink
Merge pull request #34 from yaegassy/update-doc-missing-parts
Browse files Browse the repository at this point in the history
Added missing docs based on the vscode-intelephense update
  • Loading branch information
bmewburn authored Jul 11, 2020
2 parents 96e1165 + 89f681a commit 25dd5c3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
11 changes: 10 additions & 1 deletion gettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -82,6 +83,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols
"apache",
"apcu",
"bcmath",
"blackfire",
"bz2",
"calendar",
"cassandra",
Expand All @@ -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",
Expand Down Expand Up @@ -133,6 +137,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols
"libsodium",
"libxml",
"lua",
"lzf",
"mailparse",
"mapscript",
"mbstring",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -180,6 +187,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols
"redis",
"Reflection",
"regex",
"rpminfo",
"rrd",
"SaxonC",
"session",
Expand All @@ -197,6 +205,7 @@ Sometimes symbol definitions are not in your workspace but are core PHP symbols
"sqlsrv",
"ssh2",
"standard",
"stats",
"stomp",
"suhosin",
"superglobals",
Expand Down
32 changes: 31 additions & 1 deletion installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -174,6 +175,7 @@ interface InitialisationOptions {
"apache",
"apcu",
"bcmath",
"blackfire",
"bz2",
"calendar",
"cassandra",
Expand All @@ -186,7 +188,9 @@ interface InitialisationOptions {
"curl",
"date",
"dba",
"decimal",
"dom",
"ds",
"enchant",
"Ev",
"event",
Expand Down Expand Up @@ -225,6 +229,7 @@ interface InitialisationOptions {
"libsodium",
"libxml",
"lua",
"lzf",
"mailparse",
"mapscript",
"mbstring",
Expand All @@ -236,6 +241,7 @@ interface InitialisationOptions {
"ming",
"mongo",
"mongodb",
"mosquitto-php",
"mqseries",
"msgpack",
"mssql",
Expand All @@ -261,6 +267,7 @@ interface InitialisationOptions {
"pdo_sqlite",
"pgsql",
"Phar",
"phpdbg",
"posix",
"pspell",
"pthreads",
Expand All @@ -272,6 +279,7 @@ interface InitialisationOptions {
"redis",
"Reflection",
"regex",
"rpminfo",
"rrd",
"SaxonC",
"session",
Expand All @@ -289,6 +297,7 @@ interface InitialisationOptions {
"sqlsrv",
"ssh2",
"standard",
"stats",
"stomp",
"suhosin",
"superglobals",
Expand Down Expand Up @@ -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.",
Expand Down

0 comments on commit 25dd5c3

Please sign in to comment.