-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "hyperf-phpunit-runner",
"displayName": "Hyperf PHPUnit Runner Extension",
"description": "Run PHPUnit tests with custom commands directly from the editor for hyperf framework",
"version": "0.0.13",
"publisher": "PeilinWu",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/dickwu/hyperf-phpunit-runner-extension"
},
"engines": {
"vscode": "^1.105.1"
},
"categories": [
"Testing"
],
"activationEvents": [
"onLanguage:php"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "hyperf-phpunit-runner.runTest",
"title": "Run PHPUnit Test"
},
{
"command": "hyperf-phpunit-runner.runTestMethod",
"title": "Run PHPUnit Test Method"
}
],
"configuration": {
"title": "Hyperf PHPUnit Runner",
"properties": {
"hyperf-phpunit-runner.phpunitPath": {
"type": "string",
"default": "php vendor/bin/co-phpunit --prepend test/bootstrap.php",
"description": "Path to PHPUnit executable for hyperf"
},
"hyperf-phpunit-runner.phpunitArgs": {
"type": "string",
"default": "--colors=always",
"description": "Additional arguments for PHPUnit for hyperf"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.105.1",
"@types/node": "25.3.0",
"typescript": "^5.9.3"
}
}