-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.27 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
{
"name": "orbeji/phpunit-pr-coverage-check",
"description": "Check the code coverage of a PR using the clover report of phpunit",
"license": "MIT",
"keywords": [
"PR",
"Pull Request",
"Testing",
"PHP",
"phpunit",
"Unittest",
"CI",
"Code coverage"
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-simplexml": "*",
"composer-runtime-api": "^2.2",
"mashape/unirest-php": "^3.0.4",
"ptlis/diff-parser": "^1.1.0",
"symfony/console": "^5.4.46",
"symfony/polyfill-php83": "^1.31",
"symfony/polyfill-uuid": "^1.31.0"
},
"require-dev": {
"nyholm/symfony-bundle-test": "^3.0",
"phpstan/phpstan": "^1.12.10",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"rregeer/phpunit-coverage-check": "^0.3.1",
"squizlabs/php_codesniffer": "^3.10.3",
"symfony/framework-bundle": "^5.4.45",
"symfony/var-dumper": "^5.4.46",
"webmozart/assert": "^1.11.0"
},
"autoload": {
"psr-4": {
"Orbeji\\PrCoverageChecker\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Orbeji\\PrCoverageChecker\\": "tests"
}
},
"bin": [
"bin/pr-coverage-check"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}