-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 873 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 873 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
33
34
35
{
"name": "promphp/prometheus_push_gateway_php",
"description": "Prometheus Push Gateway client for PHP applications.",
"type": "library",
"require": {
"php": "^7.2|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"promphp/prometheus_client_php": "^1.0|^2.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.5.4",
"phpstan/phpstan-phpunit": "^1.1.0",
"phpstan/phpstan-strict-rules": "^1.1.0",
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.6"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Lukas Kämmerling",
"email": "kontakt@lukas-kaemmerling.de"
}
],
"autoload": {
"psr-4": {
"PrometheusPushGateway\\": "src/PrometheusPushGateway/"
}
},
"autoload-dev": {
"psr-0": {
"Test\\PrometheusPushGateway\\": "tests/"
}
}
}