Skip to content

Commit 1e04edb

Browse files
committed
Fix package.json indentation
1 parent 51b7bd4 commit 1e04edb

File tree

1 file changed

+90
-82
lines changed

1 file changed

+90
-82
lines changed

package.json

Lines changed: 90 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,93 @@
11
{
2-
"name": "php-debug",
3-
"displayName": "PHP Debug",
4-
"version": "1.0.1",
5-
"publisher": "felixfbecker",
6-
"description": "Debug support for PHP with XDebug",
7-
"keywords": ["php", "debug", "xdebug"],
8-
"author": {
9-
"name": "Felix Becker",
10-
"email": "[email protected]"
11-
},
12-
"engines": {
13-
"vscode": "^0.10.6",
14-
"node": ">=4.0.0"
15-
},
16-
"icon": "images/logo.svg",
17-
"galleryBanner": {
18-
"color": "#6682BA",
19-
"theme": "dark"
20-
},
21-
"categories": ["Debuggers"],
22-
"repository": {
23-
"type": "git",
24-
"url": "https://github.com/felixfbecker/vscode-php-debug.git"
25-
},
26-
"bugs": {
27-
"url": "https://github.com/felixfbecker/vscode-php-debug/issues"
28-
},
29-
"dependencies": {
30-
"iconv-lite": "^0.4.13",
31-
"moment": "^2.10.6",
32-
"vscode-debugadapter": "^1.0.3",
33-
"vscode-debugprotocol": "^1.0.1",
34-
"xmldom": "^0.1.19"
35-
},
36-
"devDependencies": {
37-
"typescript": "^1.6.2",
38-
"mocha": "*"
39-
},
40-
"scripts": {
41-
"compile": "tsc -p ./src",
42-
"watch": "tsc -w -p ./src",
43-
"publish": "vsce publish",
44-
"vscode:prepublish": "npm run compile",
45-
"test": "mocha out/tests"
46-
},
47-
"contributes": {
48-
"debuggers": [
49-
{
50-
"type": "php",
51-
"label": "PHP",
52-
"enableBreakpointsFor": {
53-
"languageIds": ["php"]
54-
},
55-
"program": "./out/phpDebug.js",
56-
"runtime": "node",
57-
"configurationAttributes": {
58-
"launch": {
59-
"required": [],
60-
"properties": {
61-
"stopOnEntry": {
62-
"type": "boolean",
63-
"description": "Automatically stop after launch.",
64-
"default": true
65-
},
66-
"port": {
67-
"type": "number",
68-
"description": "Port on which to listen for XDebug",
69-
"default": 9000
70-
}
71-
}
72-
}
73-
},
74-
"initialConfigurations": [
75-
{
76-
"name": "Listen for XDebug",
77-
"type": "php",
78-
"request": "launch",
79-
"port": 9000
80-
}
81-
]
2+
"name": "php-debug",
3+
"displayName": "PHP Debug",
4+
"version": "1.0.1",
5+
"publisher": "felixfbecker",
6+
"description": "Debug support for PHP with XDebug",
7+
"keywords": [
8+
"php",
9+
"debug",
10+
"xdebug"
11+
],
12+
"author": {
13+
"name": "Felix Becker",
14+
"email": "[email protected]"
15+
},
16+
"engines": {
17+
"vscode": "^0.10.6",
18+
"node": ">=4.0.0"
19+
},
20+
"icon": "images/logo.svg",
21+
"galleryBanner": {
22+
"color": "#6682BA",
23+
"theme": "dark"
24+
},
25+
"categories": [
26+
"Debuggers"
27+
],
28+
"repository": {
29+
"type": "git",
30+
"url": "https://github.com/felixfbecker/vscode-php-debug.git"
31+
},
32+
"bugs": {
33+
"url": "https://github.com/felixfbecker/vscode-php-debug/issues"
34+
},
35+
"dependencies": {
36+
"iconv-lite": "^0.4.13",
37+
"moment": "^2.10.6",
38+
"vscode-debugadapter": "^1.0.3",
39+
"vscode-debugprotocol": "^1.0.1",
40+
"xmldom": "^0.1.19"
41+
},
42+
"devDependencies": {
43+
"typescript": "^1.6.2",
44+
"mocha": "*"
45+
},
46+
"scripts": {
47+
"compile": "tsc -p ./src",
48+
"watch": "tsc -w -p ./src",
49+
"publish": "vsce publish",
50+
"vscode:prepublish": "npm run compile",
51+
"test": "mocha out/tests"
52+
},
53+
"contributes": {
54+
"debuggers": [
55+
{
56+
"type": "php",
57+
"label": "PHP",
58+
"enableBreakpointsFor": {
59+
"languageIds": [
60+
"php"
61+
]
62+
},
63+
"program": "./out/phpDebug.js",
64+
"runtime": "node",
65+
"configurationAttributes": {
66+
"launch": {
67+
"required": [],
68+
"properties": {
69+
"stopOnEntry": {
70+
"type": "boolean",
71+
"description": "Automatically stop after launch.",
72+
"default": true
73+
},
74+
"port": {
75+
"type": "number",
76+
"description": "Port on which to listen for XDebug",
77+
"default": 9000
78+
}
8279
}
80+
}
81+
},
82+
"initialConfigurations": [
83+
{
84+
"name": "Listen for XDebug",
85+
"type": "php",
86+
"request": "launch",
87+
"port": 9000
88+
}
8389
]
84-
}
85-
}
90+
}
91+
]
92+
}
93+
}

0 commit comments

Comments
 (0)