forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "php",
"version": "0.1.0",
"publisher": "vscode",
"engines": { "vscode": "*" },
"activationEvents": ["onLanguage:php"],
"main": "./out/phpMain",
"contributes": {
"languages": [{
"id": "php",
"extensions": [ ".php", ".phtml", ".ctp" ],
"aliases": [ "PHP", "php" ],
"mimetypes": ["application/x-php"],
"configuration": "./php.configuration.json"
}],
"snippets": [{
"language": "php",
"path": "./snippets/php.json"
}],
"configuration": {
"title": "PHP Configuration options",
"type": "object",
"properties": {
"php.validate.executablePath": {
"type": "string",
"default": null,
"description": "Points to the php executable."
},
"php.validate.run": {
"type": "string",
"enum": ["onSave", "onType"],
"default": "onSave",
"description": "Whether the linter is run on save or on type."
}
}
}
},
"isAMD": true,
"scripts": {
"vscode:prepublish": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../gulpfile.plugins.js compile-plugin:php"
}
}