forked from tback/laravel-prometheus-exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.02 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
{
"name": "traum-ferienwohnungen/laravel-prometheus-exporter",
"description": "A prometheus exporter for Laravel & Lumen",
"keywords": ["laravel", "lumen", "prometheus"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Till Backhaus",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"traumferienwohnungen\\PrometheusExporter\\": "src/"
}
},
"require": {
"php" : "^7.4",
"endclothing/prometheus_client_php": "^1",
"fzaninotto/faker": "~1.7",
"illuminate/support": "^6"
},
"extra": {
"laravel": {
"providers": [
"traumferienwohnungen\\PrometheusExporter\\LaravelServiceProvider"
]
}
},
"require-dev": {
"illuminate/http": "^6",
"phpunit/phpunit": "^9",
"orchestra/testbench": "^4",
"mockery/mockery": "^1.1"
},
"scripts": {
"test": "phpunit"
}
}