-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.73 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.73 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
61
62
63
64
65
66
67
68
{
"name": "aeliot-tm/phpunit-codecoverage-baseline",
"type": "library",
"description": "Script for the comparing of current code coverage with baseline.",
"license": "MIT",
"keywords": [
"phpunit",
"clover",
"baseline"
],
"autoload": {
"psr-4": {
"Aeliot\\PHPUnitCodeCoverageBaseline\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aeliot\\PHPUnitCodeCoverageBaseline\\Test\\": "tests/"
}
},
"bin": [
"bin/pccb",
"bin/pccb_clover_build_baseline",
"bin/pccb_clover_compare"
],
"config": {
"allow-plugins": {
"ocramius/package-versions": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"require": {
"php": "^7.1|^8.0",
"ext-json": "*",
"ext-simplexml": "*",
"symfony/console": "^3.4|^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"dg/bypass-finals": "^1.4",
"phpstan/extension-installer": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-phpunit": "*",
"phpunit/phpunit": "^7.5|^9.5"
},
"scripts": {
"test": [
"@phpunit",
"@phpstan"
],
"phive-install": "phive install --trust-gpg-keys $(cat .phive/trust-gpg-keys.txt)",
"phpunit": "vendor/bin/phpunit",
"phpstan": [
"@phpstan-clear",
"@phpstan-analyse"
],
"phpstan-analise": "vendor/bin/phpstan analyse -c scripts/phpstan/config.neon",
"phpstan-baseline": [
"@phpstan-clear",
"@phpstan-analise --generate-baseline phpstan-baseline.neon"
],
"phpstan-clear": "vendor/bin/phpstan clear-result-cache -c scripts/phpstan/config.neon",
"set_versions": "sh bin/dev/set_composer_versions"
},
"suggest": {
"phpunit/phpunit": "PHPUnit must be used to generate code coverage report."
}
}