devsense-php-ls 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # DEVSENSE PHP Language Server
2
+
3
+ This package provides language server for PHP.
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "devsense-php-ls",
3
+ "version": "1.0.0",
4
+ "description": "Devsense PHP Language Server",
5
+ "main": "dist/index.js",
6
+ "os": [
7
+ "darwin",
8
+ "linux",
9
+ "win32"
10
+ ],
11
+ "cpu": [
12
+ "x64",
13
+ "arm64"
14
+ ],
15
+ "author": "DEVSENSE",
16
+ "license": "ISC",
17
+ "keywords": [
18
+ "cli",
19
+ "php",
20
+ "code analysis",
21
+ "code fix",
22
+ "code check",
23
+ "linter",
24
+ "language server"
25
+ ],
26
+ "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": "*"
33
+ }
34
+ }