2015-11-13 13:39:38 +00:00
|
|
|
{
|
|
|
|
"name": "php",
|
2018-02-28 02:15:50 +00:00
|
|
|
"displayName": "%displayName%",
|
|
|
|
"description": "%description%",
|
2018-02-27 14:15:41 +00:00
|
|
|
"version": "1.0.0",
|
2015-11-13 13:39:38 +00:00
|
|
|
"publisher": "vscode",
|
2019-06-06 09:44:50 +00:00
|
|
|
"license": "MIT",
|
2017-02-01 23:20:17 +00:00
|
|
|
"engines": {
|
|
|
|
"vscode": "0.10.x"
|
|
|
|
},
|
2015-11-13 13:39:38 +00:00
|
|
|
"contributes": {
|
2017-02-01 23:20:17 +00:00
|
|
|
"languages": [
|
|
|
|
{
|
|
|
|
"id": "php",
|
|
|
|
"extensions": [
|
|
|
|
".php",
|
|
|
|
".php4",
|
|
|
|
".php5",
|
|
|
|
".phtml",
|
|
|
|
".ctp"
|
|
|
|
],
|
|
|
|
"aliases": [
|
|
|
|
"PHP",
|
|
|
|
"php"
|
|
|
|
],
|
2018-06-21 08:24:45 +00:00
|
|
|
"firstLine": "^#!\\s*/.*\\bphp\\b",
|
2017-02-01 23:20:17 +00:00
|
|
|
"mimetypes": [
|
|
|
|
"application/x-php"
|
|
|
|
],
|
|
|
|
"configuration": "./language-configuration.json"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"grammars": [
|
2017-12-18 19:21:50 +00:00
|
|
|
{
|
|
|
|
"language": "php",
|
|
|
|
"scopeName": "source.php",
|
|
|
|
"path": "./syntaxes/php.tmLanguage.json"
|
|
|
|
},
|
2017-02-01 23:20:17 +00:00
|
|
|
{
|
|
|
|
"language": "php",
|
|
|
|
"scopeName": "text.html.php",
|
2017-12-18 19:21:50 +00:00
|
|
|
"path": "./syntaxes/html.tmLanguage.json",
|
2017-02-01 23:20:17 +00:00
|
|
|
"embeddedLanguages": {
|
|
|
|
"text.html": "html",
|
|
|
|
"source.php": "php",
|
|
|
|
"source.sql": "sql",
|
|
|
|
"text.xml": "xml",
|
|
|
|
"source.js": "javascript",
|
|
|
|
"source.json": "json",
|
|
|
|
"source.css": "css"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"snippets": [
|
|
|
|
{
|
|
|
|
"language": "php",
|
2017-11-30 11:11:21 +00:00
|
|
|
"path": "./snippets/php.snippets.json"
|
2016-10-27 12:57:12 +00:00
|
|
|
}
|
2018-03-23 06:19:10 +00:00
|
|
|
]
|
2015-11-13 13:39:38 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-06-19 09:52:34 +00:00
|
|
|
"update-grammar": "node ./build/update-grammar.js"
|
2015-11-13 13:39:38 +00:00
|
|
|
}
|
2017-05-13 02:38:35 +00:00
|
|
|
}
|