forked from triadev/LaravelPrometheusExporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "triadev/laravel-prometheus-exporter",
"description": "A laravel and lumen service provider to export metrics for prometheus.",
"keywords": [
"Laravel",
"Prometheus",
"Metrics"
],
"license": "MIT",
"authors": [
{
"name": "Christopher Lorke",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"endclothing/prometheus_client_php": "^1.0",
"illuminate/support": "^5.6|^6.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"fzaninotto/faker": "~1.4",
"mockery/mockery": "~1.0",
"orchestra/testbench": "~3.0",
"laravel/framework": "^5.6|^6.0",
"laravel/lumen-framework": "^5.6|^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"ext-redis": "Required if using Redis.",
"ext-apc": "Required if using APCu."
},
"autoload": {
"psr-4": {
"Triadev\\PrometheusExporter\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"extra": {
"laravel": {
"providers": [
"Triadev\\PrometheusExporter\\Provider\\PrometheusExporterServiceProvider"
]
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"secure-http": false
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src --ignore=src/Database/**,src/Config/*",
"fix-style": "phpcbf -p --standard=PSR2 src --ignore=src/Database/**,src/Config/*"
}
}