-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (70 loc) · 1.94 KB
/
composer.json
File metadata and controls
71 lines (70 loc) · 1.94 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
{
"name": "methorz/php-profiler",
"description": "Request-scoped performance profiling with detailed timing, memory tracking, percentile metrics, and intelligent threshold monitoring for PHP applications",
"type": "library",
"license": "MIT",
"keywords": [
"profiling",
"performance",
"metrics",
"monitoring",
"timing",
"memory",
"benchmarking",
"optimization"
],
"authors": [
{
"name": "Thorsten Merz",
"email": "thorsten@methorz.com"
}
],
"require": {
"php": "^8.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"phpstan/phpstan": "^1.12",
"squizlabs/php_codesniffer": "^3.10",
"slevomat/coding-standard": "^8.15"
},
"autoload": {
"psr-4": {
"MethorZ\\Profiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MethorZ\\Profiler\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage --coverage-clover coverage/phpunit-clover.xml",
"analyze": "phpstan analyse",
"sniff": "phpcs",
"fix": "phpcbf",
"check": [
"@sniff",
"@analyze",
"@test"
]
},
"scripts-descriptions": {
"test": "Run unit and integration tests",
"test-coverage": "Run tests with code coverage report",
"analyze": "Run static analysis with PHPStan",
"sniff": "Check code style with PHP_CodeSniffer",
"fix": "Auto-fix code style issues",
"check": "Run all quality checks (style, analysis, tests)"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}