devsense-php-ls 1.0.17769 → 1.0.17775

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 +6 -6
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -19,7 +19,7 @@ There are several additions:
19
19
  ```json
20
20
  {
21
21
  "initializationOptions": {
22
- "0": "{JSON SIGNATURE}",
22
+ "0": "KEY or {JSON CODE}",
23
23
  "clientFeatures": [],
24
24
  // VSCode settings and their values listed on
25
25
  // https://docs.devsense.com/vscode/configuration/
@@ -47,23 +47,23 @@ The language server provides free features and premium features which needs to b
47
47
 
48
48
  2. **Activate Language Server**
49
49
 
50
- Set the value of license key into `DEVSENSE_PHP_LS_LICENSE` environment variable. Language Server will try to activate automatically upon starting (requires Internet connection).
50
+ Set the value of license key into `DEVSENSE_PHP_LS_LICENSE` environment variable or `"initializationOptions"."0"`. Language Server will try to activate automatically upon starting (requires Internet connection).
51
51
 
52
52
  3. **Optional: Offline Activation**
53
53
 
54
- In case there is no Internet connection: User will follow the link below to validate license and receive a **{JSON}**: [devsense.com/purchase/validation](https://www.devsense.com/purchase/validation)
54
+ In case there is no Internet connection: User will follow the link below to validate license and receive a **{JSON CODE}**: [devsense.com/purchase/validation](https://www.devsense.com/purchase/validation)
55
55
 
56
- Pass the entire `{JSON}` into the language server's `initialize` method, as a `"initializationOptions"."0"` property:
56
+ Pass the entire `{JSON CODE}` into the language server's `initialize` method, as a `"initializationOptions"."0"` property:
57
57
 
58
58
  ```json
59
59
  {
60
60
  "initializationOptions": {
61
- "0": "{JSON}",
61
+ "0": "{JSON CODE}",
62
62
  },
63
63
  }
64
64
  ```
65
65
 
66
- Or store the `{JSON}` into environment variable `DEVSENSE_PHP_LS_LICENSE`.
66
+ Or store the `{JSON CODE}` into environment variable `DEVSENSE_PHP_LS_LICENSE`.
67
67
 
68
68
  ---
69
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devsense-php-ls",
3
- "version": "1.0.17769",
3
+ "version": "1.0.17775",
4
4
  "description": "Devsense PHP Language Server",
5
5
  "homepage": "https://www.devsense.com/",
6
6
  "funding": "https://www.devsense.com/purchase?from=npm",
@@ -45,11 +45,11 @@
45
45
  "language server"
46
46
  ],
47
47
  "optionalDependencies": {
48
- "devsense-php-ls-darwin-arm64": "^1.0.17769",
49
- "devsense-php-ls-darwin-x64": "^1.0.17769",
50
- "devsense-php-ls-linux-arm64": "^1.0.17769",
51
- "devsense-php-ls-linux-x64": "^1.0.17769",
52
- "devsense-php-ls-win32-arm64": "^1.0.17769",
53
- "devsense-php-ls-win32-x64": "^1.0.17769"
48
+ "devsense-php-ls-darwin-arm64": "^1.0.17775",
49
+ "devsense-php-ls-darwin-x64": "^1.0.17775",
50
+ "devsense-php-ls-linux-arm64": "^1.0.17775",
51
+ "devsense-php-ls-linux-x64": "^1.0.17775",
52
+ "devsense-php-ls-win32-arm64": "^1.0.17775",
53
+ "devsense-php-ls-win32-x64": "^1.0.17775"
54
54
  }
55
55
  }