forked from endclothing/prometheus_client_php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 845 Bytes
/
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
{
"name": "endclothing/prometheus_client_php",
"version": "1.0.1",
"authors": [
{
"name": "Daniel Noel-Davies",
"email": "[email protected]"
}
],
"replace: {
"jimdo/prometheus_client_php": "*"
},
"require": {
"php": "^7.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2",
"symfony/polyfill-apcu": "^1.6"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"suggest": {
"ext-redis": "Required if using Redis.",
"ext-apc": "Required if using APCu."
},
"autoload": {
"psr-4": {
"Prometheus\\": "src/Prometheus/"
}
},
"autoload-dev": {
"psr-0": {
"Test\\Prometheus\\": "tests/"
}
},
"license": "Apache-2.0"
}