mirror of
https://github.com/danog/better-prometheus.git
synced 2024-11-26 12:24:39 +01:00
31 lines
752 B
JSON
31 lines
752 B
JSON
|
{
|
||
|
"name": "danog/better-prometheus",
|
||
|
"description": "A better Prometheus library for PHP applications",
|
||
|
"type": "library",
|
||
|
"require": {
|
||
|
"php": ">=8.1",
|
||
|
"promphp/prometheus_client_php": "^2.10"
|
||
|
},
|
||
|
"license": "Apache-2.0",
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"danog\\BetterPrometheus\\": "lib/"
|
||
|
}
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"amphp/php-cs-fixer-config": "^2",
|
||
|
"psalm/phar": "dev-master",
|
||
|
"danog/phpdoc": "^0.1.24"
|
||
|
},
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Daniil Gentili",
|
||
|
"email": "daniil@daniil.it"
|
||
|
}
|
||
|
],
|
||
|
"scripts": {
|
||
|
"cs": "php-cs-fixer fix -v --diff --dry-run",
|
||
|
"cs-fix": "php-cs-fixer fix -v --diff"
|
||
|
}
|
||
|
}
|