-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.47 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
{
"name": "tuleap/prometheus-client",
"description": "Prometheus instrumentation library",
"license": "Apache-2.0",
"require": {
"php": "~8.1.0|~8.2.0|~8.3.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"guzzlehttp/psr7": "^2.0",
"infection/infection": "^0.27",
"php-http/discovery": "^1.12",
"php-http/guzzle7-adapter": "^1.0.0",
"php-http/mock-client": "^1.3",
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^9.5.10",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.1"
},
"suggest": {
"ext-redis": "Required if using the Redis storage.",
"ext-apcu": "Required if using the APCu storage."
},
"autoload": {
"psr-4": {
"Enalean\\Prometheus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Enalean\\PrometheusTest\\": "tests/unit/",
"Enalean\\PrometheusTestE2E\\": "tests/functionnal/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"php-http/discovery": true
}
}
}