-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 793 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 793 Bytes
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
{
"name": "groall/prometheus-aggregator-php-client",
"type": "library",
"description": "Prometheus aggregator v0 client",
"homepage": "https://github.com/groall/prometheus-aggregator-php-client",
"keywords": ["Prometheus", "aggregator"],
"license": "MIT",
"authors": [
{
"name": "groall",
"homepage": "https://github.com/groall/"
}
],
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"ext-sockets": "*",
"ext-zlib": "*"
},
"autoload": {
"psr-4": { "PrometheusAggregator\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Github\\Tests\\": "test/PrometheusAggregator/Tests/"}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"composer/package-versions-deprecated": true
}
}
}