-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.76 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.76 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
{
"name": "mridang/phpunit-reporters",
"description": "A PHPUnit reporter that displays code coverage in the console.",
"keywords": [
"phpunit",
"reporter",
"coverage",
"jest",
"istanbul"
],
"homepage": "https://github.com/mridang/phpunit-reporters",
"license": "Apache-2.0",
"authors": [
{
"name": "Mridang Agarwalla",
"homepage": "https://mridang.com"
}
],
"require": {
"php": "^8.3",
"ext-simplexml": "*",
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
"symfony/console": "^6.0 || ^7.0",
"ext-libxml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"icanhazstring/composer-unused": "^0.9.3",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-symfony": "^1.4",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"Mridang\\PHPUnitReporters\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mridang\\PHPUnitReporters\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/mridang/phpunit-reporters/issues",
"source": "https://github.com/mridang/phpunit-reporters"
},
"scripts": {
"test": "phpunit --coverage-html=build/coverage/html --coverage-clover=build/coverage/clover.xml",
"rector": "rector process",
"phpstan": "phpstan analyse --memory-limit=-1",
"format": "php-cs-fixer fix",
"depcheck": "composer-unused"
},
"config": {
"platform": {
"php": "8.3.0"
},
"allow-plugins": {
"php-http/discovery": true
},
"process-timeout": 600
},
"version": "1.0.2"
}