Files
wp-prometheus/composer.json

68 lines
1.8 KiB
JSON
Raw Normal View History

{
"name": "magdev/wp-prometheus",
"description": "WordPress Prometheus metrics endpoint with extensible hooks for custom metrics",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Marco Graetsch",
"email": "magdev3.0@gmail.com",
"homepage": "https://src.bundespruefstelle.ch/magdev"
}
],
"homepage": "https://src.bundespruefstelle.ch/magdev/wp-prometheus",
"support": {
"issues": "https://src.bundespruefstelle.ch/magdev/wp-prometheus/issues"
},
"repositories": [
{
"type": "path",
"url": "lib/wc-licensed-product-client",
"options": {
"symlink": false,
"versions": {
"magdev/wc-licensed-product-client": "0.2.2"
}
}
}
],
"require": {
"php": ">=8.3",
"magdev/wc-licensed-product-client": "^0.2.2",
"promphp/prometheus_client_php": "^2.10"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "*"
},
"autoload": {
"psr-4": {
"Magdev\\WpPrometheus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Magdev\\WpPrometheus\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.3.0"
}
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"test": "phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true
}