-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "fullo/sci-profiler-php",
"description": "Software Carbon Intensity (SCI) profiler for PHP applications. Non-invasive, framework-agnostic carbon footprint measurement.",
"type": "library",
"license": "MIT",
"keywords": ["profiler", "carbon", "sci", "green-software", "sustainability", "performance"],
"authors": [
{
"name": "fullo",
"homepage": "https://github.com/fullo"
}
],
"require": {
"php": ">=8.1",
"psr/clock": "^1.0",
"psr/log": "^2.0|^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0|^11.0"
},
"autoload": {
"psr-4": {
"SciProfiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SciProfiler\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"cs-fix": "php-cs-fixer fix"
}
}