-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.47 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
{
"name": "nexusphp/tachycardia",
"description": "Detects slow running tests in your PHPUnit-driven test suites.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "John Paul E. Balandan, CPA",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/NexusPHP/tachycardia/issues",
"source": "https://github.com/NexusPHP/tachycardia.git",
"slack": "https://nexusphp.slack.com"
},
"require": {
"php": "^8.1",
"phpunit/phpunit": "^10.5 || ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.43",
"nexusphp/cs-config": "^3.19",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Nexus\\PHPUnit\\Tachycardia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nexus\\PHPUnit\\Tachycardia\\Tests\\": "tests/unit"
},
"classmap": [
"tests/end-to-end"
]
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}