forked from moneyplatform/laravel-prometheus-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 985 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
{
"name": "moneyplatform/laravel-prometheus-exporter",
"description": "A Prometheus exporter for Laravel and Lumen",
"license": "MIT",
"authors": [
{
"name": "Moneyplatform"
}
],
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^10.0",
"illuminate/routing": "^6.0 || ^7.0 || ^8.0 || ^10.0",
"promphp/prometheus_client_php": "^2.2.1 || ^2.7",
"guzzlehttp/guzzle": "^6.3 || ^7.0"
},
"autoload": {
"psr-4": {
"Moneyplatform\\LaravelPrometheusExporter\\": "src/",
"Moneyplatform\\LaravelPrometheusExporter\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^8.0"
}
}