40 lines
985 B
JSON
40 lines
985 B
JSON
{
|
|
"name": "futurematt/laravel-prometheus-exporter",
|
|
"description": "A prometheus exporter for Laravel",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Superbalist.com a division of Takealot Online (Pty) Ltd",
|
|
"email": "info@superbalist.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.2.0",
|
|
"illuminate/support": "^5.3 || ^6.0 || ^7.0",
|
|
"illuminate/routing": "^5.3 || ^6.0 || ^7.0",
|
|
"endclothing/prometheus_client_php": "^1.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Superbalist\\LaravelPrometheusExporter\\": "src/",
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.0-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"Superbalist\\LaravelPrometheusExporter\\PrometheusServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"Prometheus": "Superbalist\\LaravelPrometheusExporter\\PrometheusFacade"
|
|
}
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^8",
|
|
"mockery/mockery": "^1.3"
|
|
}
|
|
}
|