devsense-php-ls 1.0.0 → 1.0.17306

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+
8
+ {
9
+ "type": "node",
10
+ "request": "launch",
11
+ "cwd": "${workspaceFolder}",
12
+ "runtimeArgs": [
13
+ "--import=tsx",
14
+ ],
15
+ "console": "integratedTerminal",
16
+ "args": [
17
+ "src/index.ts"
18
+ ],
19
+ "name": "Run",
20
+ "skipFiles": [
21
+ "<node_internals>/**"
22
+ ]
23
+ }
24
+ ]
25
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "npm",
6
+ "script": "build",
7
+ "group": {
8
+ "kind": "build",
9
+ "isDefault": true
10
+ },
11
+ "problemMatcher": [],
12
+ "label": "Build"
13
+ }
14
+ ]
15
+ }
package/README.md CHANGED
@@ -1,3 +1,14 @@
1
1
  # DEVSENSE PHP Language Server
2
2
 
3
3
  This package provides language server for PHP.
4
+
5
+ ## Language Server
6
+
7
+ The language server executable is a binary platform specific file installed as a dependency, located at `node_modules/devsense-php-ls-$os-$cpu/dist/devsense.php.ls`.
8
+
9
+ Upon starting, the process is controlled using Language Server Protocol according to https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/ through STDIN/STDOUT.
10
+
11
+ ## Protocol Extensions
12
+
13
+ _to be specified_
14
+
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "devsense-php-ls",
3
- "version": "1.0.0",
3
+ "version": "1.0.17306",
4
4
  "description": "Devsense PHP Language Server",
5
5
  "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
6
7
  "os": [
7
8
  "darwin",
8
9
  "linux",
@@ -24,11 +25,11 @@
24
25
  "language server"
25
26
  ],
26
27
  "optionalDependencies": {
27
- "devsense-php-ls-win32-x64": "*",
28
- "devsense-php-ls-win32-arm64": "*",
29
- "devsense-php-ls-linux-x64": "*",
30
- "devsense-php-ls-linux-arm64": "*",
31
- "devsense-php-ls-darwin-x64": "*",
32
- "devsense-php-ls-darwin-arm64": "*"
28
+ "devsense-php-ls-darwin-arm64": "^1.0.17306",
29
+ "devsense-php-ls-darwin-x64": "^1.0.17306",
30
+ "devsense-php-ls-linux-arm64": "^1.0.17306",
31
+ "devsense-php-ls-linux-x64": "^1.0.17306",
32
+ "devsense-php-ls-win32-arm64": "^1.0.17306",
33
+ "devsense-php-ls-win32-x64": "^1.0.17306"
33
34
  }
34
35
  }