-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.44 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "php-constructor",
"displayName": "PHP Constructor",
"description": "Initialize php constructor properties",
"version": "0.1.2",
"publisher": "MehediDracula",
"author": "Mehedi Hasan <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Other"
],
"keywords": [
"php",
"class",
"constructor"
],
"galleryBanner": {
"color": "#0f1419",
"theme": "dark"
},
"activationEvents": [
"onLanguage:php",
"onCommand:phpConstructor.insert"
],
"main": "./src/extension",
"icon": "images/icon.png",
"contributes": {
"commands": [
{
"command": "phpConstructor.insert",
"title": "Insert Constructor Property"
}
],
"configuration": {
"type": "object",
"title": "PHP constructor extension configurations",
"properties": {
"phpConstructor.visibility": {
"type": "string",
"default": "protected",
"enum": ["public", "protected", "private"],
"description": "Default property visibility modifier"
},
"phpConstructor.constructorVisibility": {
"type": "string",
"default": "public",
"enum": ["public", "protected", "private"],
"description": "Default constructor visibility modifier"
},
"phpConstructor.choosePropertyVisibility": {
"type": "boolean",
"default": false,
"description": "Choose property visibility modifier in snippet"
},
"phpConstructor.chooseConstructorVisibility": {
"type": "boolean",
"default": false,
"description": "Choose constructor visibility modifier in snippet"
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/MehediDracula/PHP-Constructor"
},
"bugs": {
"url": "https://github.com/MehediDracula/PHP-Constructor/issues"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^1.1.6"
}
}