This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
112 lines (112 loc) · 2.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ide-php",
"main": "./lib/main",
"version": "0.7.18",
"description": "PHP language support for Atom-IDE",
"repository": "https://github.com/atom/ide-php",
"license": "MIT",
"engines": {
"atom": ">=1.21.0"
},
"configSchema": {
"phpPath": {
"title": "PHP Path",
"type": "string",
"default": "",
"description": "Absolute path of your PHP 7 binary (e.g. `/usr/local/bin/php` or `c:\\php7\\php.exe`) if not in PATH or PHP_HOME. This is used to launch the PHP language server."
},
"memoryLimit": {
"title": "Memory Limit",
"type": "string",
"default": "-1",
"description": "Maximum amount of memory the local PHP language server can use. [Number][K|M|G]. Use '-1' to allow unlimited RAM use."
},
"connectionType": {
"title": "Connection Type",
"type": "string",
"enum": [
"auto",
"socket",
"stdio"
],
"default": "auto",
"description": "The connection type for communicating with the local PHP language server. 'auto' will use 'socket' on Windows, 'stdio' on other platforms."
},
"autocompletePriority": {
"title": "AutoComplete suggestion pritority",
"type": "string",
"enum": [
"default",
"lower"
],
"default": "default",
"description": "Set 'lower' if you want to see LSP suggestions under the suggestions from the Autocomplete package. Restart required."
}
},
"scripts": {
"server-install": "rm -rf vendor && rm -rf composer.lock && composer install --prefer-dist --no-dev && composer dump-autoload --optimize",
"server-package": "7z a temp.tar ./vendor/* && 7z a php-ls-x.y.z.tar.gz temp.tar && rm -f temp.tar"
},
"atomTestRunner": "./test/runner",
"dependencies": {
"atom-languageclient": "0.9.9",
"decompress": "^4.2.0"
},
"enhancedScopes": [
"text.html.php"
],
"consumedServices": {
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"atom-ide-busy-signal": {
"versions": {
"0.1.0": "consumeBusySignal"
}
},
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
},
"signature-help": {
"versions": {
"0.1.0": "consumeSignatureHelp"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"4.0.0": "provideAutocomplete"
}
},
"code-format.range": {
"versions": {
"0.1.0": "provideCodeFormat"
}
},
"code-highlight": {
"versions": {
"0.1.0": "provideCodeHighlight"
}
},
"definitions": {
"versions": {
"0.1.0": "provideDefinitions"
}
},
"find-references": {
"versions": {
"0.1.0": "provideFindReferences"
}
},
"outline-view": {
"versions": {
"0.1.0": "provideOutlines"
}
}
}
}