forked from richardregeer/phpunit-coverage-check
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
129 lines (129 loc) · 4.2 KB
/
composer.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "esi/phpunit-coverage-check",
"description": "Check the code coverage using the clover report of PHPUnit.",
"license": "MIT",
"type": "library",
"keywords": [
"test",
"testing",
"testing-tools",
"coverage",
"coverage-report",
"phpunit",
"unit-testing",
"code-coverage",
"code-coverage-checker"
],
"authors": [
{
"name": "Eric Sizemore",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Richard Regeer",
"email": "[email protected]",
"role": "Original Developer"
}
],
"homepage": "https://github.com/ericsizemore/phpunit-coverage-check",
"support": {
"issues": "https://github.com/ericsizemore/phpunit-coverage-check/issues",
"forum": "https://github.com/ericsizemore/phpunit-coverage-check/discussions",
"source": "https://github.com/ericsizemore/phpunit-coverage-check/tree/master",
"docs": "https://github.com/ericsizemore/phpunit-coverage-check",
"rss": "https://github.com/ericsizemore/phpunit-coverage-check/releases.atom",
"security": "https://github.com/ericsizemore/phpunit-coverage-check/security/policy"
},
"funding": [
{
"type": "custom",
"url": "https://ko-fi.com/ericsizemore"
},
{
"type": "github",
"url": "https://github.com/ericsizemore"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/packagist/esi/phpunit-coverage-check"
}
],
"_comment": [
"This package is also offered as a Phar binary, which can be downloaded from the latest",
"release on GitHub at https://github.com/ericsizemore/phpunit-coverage-check/releases"
],
"require": {
"php": "^8.3",
"ext-libxml": "*",
"ext-simplexml": "*",
"symfony/console": "^7.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.68",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.5 || ^12.0",
"psalm/plugin-phpunit": "^0.19.0",
"psalm/plugin-symfony": "^5.2.7",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Esi\\CoverageCheck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Esi\\CoverageCheck\\Tests\\": "tests/src"
}
},
"bin": [
"bin/coverage-check"
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"platform": {
"php": "8.3.0"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"scripts": {
"analyze": [
"@clear-build",
"@composer validate",
"@phpunit",
"@code-coverage",
"@phpstan",
"@psalm",
"@psalm:security",
"@psalm:shepherd"
],
"clear-build": "rm -rf ./build/*",
"code-coverage": "@php bin/coverage-check build/logs/clover.xml 100",
"phpcs:check": "@phpcs:fix --dry-run --diff",
"phpcs:fix": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"phpstan": "vendor/bin/phpstan analyse -c phpstan.neon -vvv",
"phpunit": "vendor/bin/phpunit",
"phpunit:migrate": "@phpunit --migrate-configuration",
"psalm": "vendor/bin/psalm -c psalm.xml --no-cache --show-info=true",
"psalm:baseline": "@psalm --no-diff --set-baseline=psalm-baseline.xml",
"psalm:ci": "@psalm:security --shepherd --report=results.sarif",
"psalm:security": "@psalm --no-diff --taint-analysis",
"psalm:shepherd": "@psalm --no-diff --shepherd --stats",
"refactor:check": "@refactor:fix --dry-run",
"refactor:fix": "vendor/bin/rector process"
}
}