-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.24 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "zolex/psalm-markdown-report",
"description": "A Psalm plugin to write Markdown reports",
"keywords": [
"psalm",
"markdown",
"report",
"plugin"
],
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Andreas Linden",
"email": "zlx@gmx.de"
}
],
"require": {
"php": ">=8.1",
"ext-simplexml": "*",
"vimeo/psalm": "^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"extra": {
"psalm": {
"pluginClass": "Zolex\\Zolex\\Plugin"
}
},
"autoload": {
"psr-4": {
"Zolex\\PsalmMarkdownReport\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Zolex\\PsalmMarkdownReport\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage",
"test-coverage-clover": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml",
"psalm": "vendor/bin/psalm --no-cache",
"psalm-debug": "PSALM_ALLOW_XDEBUG=1 XDEBUG_TRIGGER=1 vendor/bin/psalm --no-cache"
}
}