2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"name": "php",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"publisher": "vscode",
|
2016-03-16 19:29:29 +08:00
|
|
|
"engines": { "vscode": "0.10.x" },
|
2015-11-13 21:39:38 +08:00
|
|
|
"activationEvents": ["onLanguage:php"],
|
|
|
|
"main": "./out/phpMain",
|
2016-03-03 22:12:19 +08:00
|
|
|
"dependencies": {
|
|
|
|
"vscode-nls": "^1.0.4"
|
|
|
|
},
|
2015-11-13 21:39:38 +08:00
|
|
|
"contributes": {
|
|
|
|
"languages": [{
|
|
|
|
"id": "php",
|
2016-05-10 18:06:46 +08:00
|
|
|
"extensions": [ ".php", ".php4", ".php5", ".phtml", ".ctp" ],
|
2015-11-13 21:39:38 +08:00
|
|
|
"aliases": [ "PHP", "php" ],
|
|
|
|
"mimetypes": ["application/x-php"],
|
|
|
|
"configuration": "./php.configuration.json"
|
|
|
|
}],
|
2016-05-10 18:06:46 +08:00
|
|
|
"grammars": [{
|
|
|
|
"language": "php",
|
|
|
|
"scopeName": "text.html.php",
|
|
|
|
"path": "./syntaxes/php.json"
|
|
|
|
}],
|
2015-11-13 21:39:38 +08:00
|
|
|
"snippets": [{
|
|
|
|
"language": "php",
|
|
|
|
"path": "./snippets/php.json"
|
|
|
|
}],
|
|
|
|
"configuration": {
|
2016-03-16 00:07:06 +08:00
|
|
|
"title": "%configuration.title%",
|
2015-11-13 21:39:38 +08:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2015-12-04 19:32:00 +08:00
|
|
|
"php.validate.enable": {
|
|
|
|
"type": "boolean",
|
|
|
|
"default": true,
|
2016-03-16 00:07:06 +08:00
|
|
|
"description": "%configuration.validate.enable%"
|
2015-12-04 19:32:00 +08:00
|
|
|
},
|
2015-11-13 21:39:38 +08:00
|
|
|
"php.validate.executablePath": {
|
2016-02-10 19:09:06 +08:00
|
|
|
"type": ["string", "null"],
|
2015-11-13 21:39:38 +08:00
|
|
|
"default": null,
|
2016-03-16 00:07:06 +08:00
|
|
|
"description": "%configuration.validate.executablePath%"
|
2015-11-13 21:39:38 +08:00
|
|
|
},
|
|
|
|
"php.validate.run": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["onSave", "onType"],
|
|
|
|
"default": "onSave",
|
2016-03-16 00:07:06 +08:00
|
|
|
"description": "%configuration.validate.run%"
|
2015-11-13 21:39:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
2016-03-16 22:12:24 +08:00
|
|
|
"compile": "gulp compile-extension:php",
|
|
|
|
"watch": "gulp watch-extension:php"
|
2015-11-13 21:39:38 +08:00
|
|
|
}
|
|
|
|
}
|