-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jamesgober/benchmark",
"description": "A PHP benchmarking library for measuring code performance and memory usage with precision, extensibility, and advanced reporting features.",
"keywords": [
"php",
"timer",
"profiling",
"benchmark",
"jamesgober",
"performance",
"memory-usage",
"execution-time",
"benchmarking-library"
],
"time": "2024-12-06",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://github.com/jamesgober/Benchmark",
"support": {
"issues": "https://github.com/jamesgober/Benchmark/issues",
"docs": "https://github.com/jamesgober/Benchmark#readme",
"source": "https://github.com/jamesgober/Benchmark"
},
"authors": [
{
"name": "James Gober",
"email": "[email protected]",
"homepage": "https://jamesgober.com/",
"role": "Project Lead, Architect, Engineer, Developer, Designer"
}
],
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5.17",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.4",
"friendsofphp/php-cs-fixer": "^3.15",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"JG\\Benchmark\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JG\\Tests\\": "tests/"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit && echo \"Tests completed!\"",
"phpstan": "@php vendor/bin/phpstan analyse && echo \"Static analysis completed!\"",
"check": [
"@composer validate",
"@phpstan",
"@test"
],
"test:ci": "@php vendor/bin/phpunit --testdox --coverage-text"
},
"minimum-stability": "stable",
"prefer-stable": true
}