c8ef2037dc
Update composer to work with Laravel 5 and Laravel 6
40 lines
970 B
JSON
40 lines
970 B
JSON
{
|
|
"name": "superbalist/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": ">=5.6.0",
|
|
"illuminate/support": "^5.3 || ^6.0",
|
|
"illuminate/routing": "^5.3 || ^6.0",
|
|
"jimdo/prometheus_client_php": "^0.9.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": "^5.5",
|
|
"mockery/mockery": "^0.9.5"
|
|
}
|
|
}
|