forked from zoeyfrisart/php-html-in-string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 944 Bytes
/
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
{
"name": "php-html-in-string",
"displayName": "PHP html in string",
"description": "Add support for syntax highlighting in PHP strings",
"author": {
"name": "yannick1691",
"url": "https://github.com/yannick1691"
},
"publisher": "NiceYannick",
"repository": {
"url": "https://github.com/yannick1691/php-html-in-string.git",
"type": "git"
},
"homepage": "https://github.com/yannick1691/php-html-in-string/blob/main/README.md",
"version": "0.1.3",
"license": "AGPL-3.0-or-later",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"injectTo": [
"source.php",
"text.html"
],
"scopeName": "php-html-in-string.injection",
"path": "./syntaxes/php.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.html": "html"
}
}
]
}
}