-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
51 lines (51 loc) · 1.66 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "artprima/prometheus-metrics-bundle",
"description": "Symfony 5 / 6 Prometheus Metrics Bundle",
"keywords": [ "symfony", "symfony-bundle", "prometheus", "metrics" ],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Denis Voytyuk",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"promphp/prometheus_client_php": "^2.6",
"symfony/http-kernel": "^5.4|^6.2|^7.0",
"symfony/dependency-injection": "^5.4|^6.2|^7.0",
"symfony/config": "^5.4|^6.2|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0",
"symfony/yaml": "^5.4|^6.2|^7.0",
"symfony/browser-kit": "^5.4|^6.2|^7.0",
"symfony/framework-bundle": "^5.4|^6.2|^7.0",
"friendsofphp/php-cs-fixer": "^3.17",
"escapestudios/symfony2-coding-standard": "^3.11",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"php-cs-fixer": "php-cs-fixer --config=./.php-cs-fixer.dist.php",
"php-cs-fixer-check": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --diff --allow-risky=yes --ansi --dry-run",
"php-cs-fixer-fix": "php-cs-fixer fix --config=.php-cs-fixer.dist.php -v --diff --allow-risky=yes --ansi",
"phpcs-check": "phpcs"
},
"suggest": {
"ext-apcu": "Required if using APCu as prometheus metrics backend",
"ext-redis": "Required if using Redis as prometheus metrics backend",
"symfony/stopwatch": "Required if you want to measure request duration"
},
"autoload": {
"psr-4": {
"Artprima\\PrometheusMetricsBundle\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Artprima\\PrometheusMetricsBundle\\": "Tests/"
}
}
}