forked from ahinkle/vscode-laravel-model-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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": "laravel-model-snippets",
"displayName": "Laravel Model Snippets",
"description": "Quickly get up and running with your Laravel Models",
"version": "1.0.2",
"publisher": "ahinkle",
"engines": {
"vscode": "^1.25.0"
},
"author": {
"name": "Andy Hinkle",
"email": "[email protected]",
"url": "https://github.com/ahinkle"
},
"homepage": "https://github.com/ahinkle/vscode-laravel-model-snippets",
"repository": {
"type": "git",
"url": "https://github.com/ahinkle/vscode-laravel-model-snippets"
},
"bugs": {
"url": "https://github.com/ahinkle/vscode-laravel-model-snippets/issues"
},
"keywords": [
"laravel",
"model",
"template",
"snippet",
"formatter"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#f66f62",
"theme": "dark"
},
"categories": [
"Programming Languages",
"Snippets",
"Formatters"
],
"contributes": {
"snippets": [
{
"language": "php",
"path": "./snippets/model.json"
}
]
}
}