-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.49 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.49 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": "pestphp/pest-plugin-type-coverage",
"description": "The Type Coverage plugin for Pest PHP.",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin",
"coverage",
"type-coverage"
],
"license": "MIT",
"require": {
"php": "^8.3",
"nunomaduro/pokio": "^1.0.0",
"pestphp/pest-plugin": "^4.0.0",
"phpstan/phpstan": "^1.12.24|^2.1.46",
"tomasvotruba/type-coverage": "^1.0.0|^2.1.0"
},
"autoload": {
"psr-4": {
"Pest\\TypeCoverage\\": "src/"
}
},
"require-dev": {
"pestphp/pest": "^4.4.5",
"pestphp/pest-dev-tools": "^4.1.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\Fixtures\\": "tests/Fixtures"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "pint --parallel",
"test:lint": "pint --parallel --test",
"test:unit": "pest",
"test:unit-parallel": "pest --parallel",
"test": [
"@test:lint",
"@test:unit",
"@test:unit-parallel"
]
},
"extra": {
"pest": {
"plugins": [
"Pest\\TypeCoverage\\Plugin"
]
}
}
}