-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.19 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
{
"name": "phpunit-snippets",
"displayName": "PHPUnit Snippets",
"description": "PHPUnit snippets support for Visual Studio Code",
"version": "1.1.0",
"publisher": "onecentlin",
"author": {
"name": "Winnie Lin",
"email": "onecentlin@gmail.com",
"url": "https://devmanna.blogspot.com"
},
"homepage": "https://github.com/onecentlin/phpunit-snippets-vscode",
"repository": {
"type": "git",
"url": "https://github.com/onecentlin/phpunit-snippets-vscode.git"
},
"bugs": {
"url": "https://github.com/onecentlin/phpunit-snippets-vscode/issues"
},
"engines": {
"vscode": "^1.20.0"
},
"keywords": [
"phpunit",
"testing",
"snippet"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#505E9B",
"theme": "dark"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "php",
"path": "./snippets/snippets.json"
},
{
"language": "php",
"path": "./snippets/tests.json"
}
]
}
}