-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.36 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "testflowlabs/testlink",
"description": "Framework-agnostic test traceability for PHP. Supports Pest and PHPUnit with bidirectional code-to-test linking.",
"keywords": [
"php",
"pest",
"phpunit",
"testing",
"coverage",
"traceability",
"testlink"
],
"license": "MIT",
"authors": [
{
"name": "Yunus Emre Deligöz",
"email": "ye@deligoz.me"
}
],
"homepage": "https://link.testflowlabs.dev/",
"support": {
"issues": "https://github.com/TestFlowLabs/testlink/issues",
"source": "https://github.com/TestFlowLabs/testlink",
"docs": "https://link.testflowlabs.dev/"
},
"bin": [
"bin/testlink"
],
"require": {
"php": "^8.3",
"nikic/php-parser": "^5.0",
"phpstan/phpdoc-parser": "^2.0",
"testflowlabs/test-attributes": "^1.0"
},
"suggest": {
"pestphp/pest": "For Pest testing framework integration",
"phpunit/phpunit": "For PHPUnit testing framework integration"
},
"require-dev": {
"laravel/pint": "^1.26",
"pestphp/pest": "^4.0.0",
"pestphp/pest-dev-tools": "^4.0.0",
"pestphp/pest-plugin": "^4.0.0",
"pestphp/pest-plugin-type-coverage": "^4.0"
},
"autoload": {
"psr-4": {
"TestFlowLabs\\TestLink\\": "src/"
},
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"rector": "rector",
"pint": "pint --parallel",
"test:rector": "rector --dry-run",
"test:pint": "pint --parallel --test",
"test:phpstan": "phpstan analyse --ansi",
"test:unit": "pest --parallel --coverage --min=60",
"test:types": "pest --type-coverage --parallel",
"test:mutation": "pest --mutate --parallel --everything --covered-only --min=50",
"test": [
"@test:rector",
"@test:pint",
"@test:phpstan",
"@test:unit",
"@test:types"
]
}
}