2016-08-25 15:55:00 +00:00
|
|
|
{
|
|
|
|
"name": "php-intellisense",
|
|
|
|
"displayName": "PHP IntelliSense",
|
|
|
|
"description": "Advanced Autocompletion and Refactoring support for PHP",
|
|
|
|
"publisher": "felixfbecker",
|
|
|
|
"author": "Felix Becker <felix.b@outlook.com>",
|
2017-07-29 12:28:00 +00:00
|
|
|
"license": "MIT",
|
2016-08-25 15:55:00 +00:00
|
|
|
"private": true,
|
2017-02-03 12:32:09 +00:00
|
|
|
"preview": false,
|
2017-10-19 21:53:20 +00:00
|
|
|
"version": "1.5.2",
|
2016-08-25 15:55:00 +00:00
|
|
|
"engines": {
|
2017-10-19 21:51:16 +00:00
|
|
|
"vscode": "^1.17.1"
|
2016-08-25 15:55:00 +00:00
|
|
|
},
|
2016-09-04 11:26:31 +00:00
|
|
|
"keywords": [
|
|
|
|
"php",
|
|
|
|
"intellisense",
|
|
|
|
"autocompletion",
|
|
|
|
"help",
|
|
|
|
"refactor"
|
|
|
|
],
|
2016-08-25 15:55:00 +00:00
|
|
|
"categories": [
|
|
|
|
"Languages"
|
|
|
|
],
|
2017-06-29 13:57:29 +00:00
|
|
|
"icon": "images/logo.png",
|
2016-09-04 11:26:31 +00:00
|
|
|
"galleryBanner": {
|
|
|
|
"color": "#6682BA",
|
|
|
|
"theme": "dark"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/felixfbecker/vscode-php-intellisense.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/felixfbecker/php-language-server/issues"
|
|
|
|
},
|
2016-08-25 15:55:00 +00:00
|
|
|
"activationEvents": [
|
2017-05-29 15:34:48 +00:00
|
|
|
"onLanguage:php",
|
2017-06-06 18:07:07 +00:00
|
|
|
"workspaceContains:**/*.php"
|
2016-08-25 15:55:00 +00:00
|
|
|
],
|
|
|
|
"main": "./out/extension",
|
|
|
|
"scripts": {
|
2017-08-22 05:57:12 +00:00
|
|
|
"build": "tsc -p .",
|
2016-10-12 08:45:01 +00:00
|
|
|
"watch": "tsc -w -p .",
|
2017-08-22 05:53:20 +00:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
2016-08-25 15:55:00 +00:00
|
|
|
"lint": "tslint -c tslint.json \"src/**/*.ts\""
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-08-22 05:53:20 +00:00
|
|
|
"@types/mocha": "^2.2.42",
|
2017-10-19 22:04:21 +00:00
|
|
|
"@types/mz": "^0.0.31",
|
2017-08-22 05:53:20 +00:00
|
|
|
"@types/node": "^8.0.24",
|
|
|
|
"@types/semver": "^5.3.34",
|
2017-04-10 20:04:20 +00:00
|
|
|
"tslint": "^5.0.0",
|
2016-12-25 11:33:12 +00:00
|
|
|
"typescript": "^2.1.4",
|
2016-09-04 12:06:35 +00:00
|
|
|
"vsce": "^1.8.1",
|
2016-10-12 08:45:01 +00:00
|
|
|
"vscode": "^1.0.0"
|
2016-08-25 15:55:00 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-10-12 08:26:08 +00:00
|
|
|
"mz": "^2.4.0",
|
2016-09-09 18:11:24 +00:00
|
|
|
"semver": "^5.3.0",
|
2017-02-03 12:17:34 +00:00
|
|
|
"vscode-languageclient": "^3.0.3"
|
2017-04-10 20:36:10 +00:00
|
|
|
},
|
|
|
|
"contributes": {
|
|
|
|
"configuration": {
|
2017-05-05 07:29:42 +00:00
|
|
|
"type": "object",
|
|
|
|
"title": "PHP IntelliSense",
|
2017-04-10 20:36:10 +00:00
|
|
|
"properties": {
|
|
|
|
"php.memoryLimit": {
|
|
|
|
"type": "string",
|
|
|
|
"default": "-1",
|
|
|
|
"description": "The memory limit of the php language server. [Number][K|M|G]. Use '-1' to allow unlimited use of the RAM(default).",
|
|
|
|
"pattern": "^\\d+[KMG]?$"
|
2017-05-05 07:29:42 +00:00
|
|
|
},
|
|
|
|
"php.executablePath": {
|
|
|
|
"type": [
|
|
|
|
"string",
|
|
|
|
"null"
|
|
|
|
],
|
|
|
|
"default": null,
|
|
|
|
"description": "The path to a PHP 7+ executable."
|
2017-04-10 20:36:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-25 15:55:00 +00:00
|
|
|
}
|
|
|
|
}
|