-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 818 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 818 Bytes
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
{
"name": "pivovartsev/is-utils",
"autoload": {
"psr-4": {
"StanislavPivovartsev\\InterestingStatistics\\Utils\\": "src/",
"StanislavPivovartsev\\InterestingStatistics\\Utils\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"php-amqplib/php-amqplib": "^3.2",
"pivovartsev/is-config-reader": "^1.0",
"ext-mysqli": "*",
"monolog/monolog": "3.x-dev"
},
"require-dev": {
"phpunit/phpunit": "10.5.19",
"phpstan/phpstan": "^1.11",
"infection/infection": "^0.29.6"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyze -l9 src tests",
"phpstan-clear-cache": "vendor/bin/phpstan clear-result-cache",
"infection": "infection --show-mutations"
}
}