forked from virta-ltd/laravel-prometheus-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1 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
{
"name": "mcoirault/laravel-prometheus-exporter",
"description": "A prometheus exporter for Laravel",
"license": "MIT",
"authors": [
{
"name": "Maxime Coirault",
"email": "maxime.coirault@gmail.com"
}
],
"replace": {
"superbalist/laravel-prometheus-exporter": "*"
},
"require": {
"php": "^7.3 || ^8.0",
"illuminate/support": "^8.0 || ^9.0",
"illuminate/routing": "^8.0 || ^9.0",
"promphp/prometheus_client_php": "dev-main"
},
"require-dev": {
"ext-apcu": "*",
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.4"
},
"autoload": {
"psr-4": {
"Mcoirault\\LaravelPrometheusExporter\\": "src/",
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Mcoirault\\LaravelPrometheusExporter\\PrometheusServiceProvider"
],
"aliases": {
"Prometheus": "Mcoirault\\LaravelPrometheusExporter\\PrometheusFacade"
}
}
}
}