
* PHP 7.2+ Support * Updated the composer.json to require PHP 7.2, removed Travis CI tests for all PHP versions prior to 7.2 and replace jimdo/prometheus_client_php with endclothing/prometheus_client_php to support PHP 7.2. * Updated PHPUnit to v8 and Mockery to v1.4 in order to support PHP 7.4. * Downgraded Mockery from 1.4 to 1.3 in order to support PHP versions < 7.3. * Updated composer.json to allow laravel ^8.0 Co-authored-by: FutureMatt <43476243+FutureMatt@users.noreply.github.com>
40 lines
1,002 B
JSON
40 lines
1,002 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": ">=7.2.0",
|
|
"illuminate/support": "^5.3 || ^6.0 || ^7.0 || ^8.0",
|
|
"illuminate/routing": "^5.3 || ^6.0 || ^7.0 || ^8.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"
|
|
}
|
|
}
|