-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.86 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.86 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
{
"name": "php-forge/debug",
"type": "library",
"description": "Framework-neutral contracts and declarative presentation models for debugger extensions.",
"keywords": [
"collector",
"debug",
"panel"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3"
},
"require-dev": {
"infection/infection": "^0.35",
"maglnet/composer-require-checker": "^4.1",
"php-forge/coding-standard": "^0.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0.3",
"phpunit/phpunit": "^12.5",
"psr/log": "^3.0",
"phpstan/phpstan": "^2.2"
},
"autoload": {
"psr-4": {
"PHPForge\\Debug\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPForge\\Debug\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.3.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"check-dependencies": "./vendor/bin/composer-require-checker check",
"ecs": "./vendor/bin/ecs --fix",
"mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100",
"mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan --static-analysis-tool-options='--memory-limit=-1'",
"rector": "./vendor/bin/rector process",
"static": "./vendor/bin/phpstan --memory-limit=-1",
"tests": "./vendor/bin/phpunit"
}
}