generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
58 lines (58 loc) · 1.78 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
{
"name": "lkaemmerling/laravel-horizon-prometheus-exporter",
"description": "A small package to gain and export long time information from Laravel & Horizon for Prometheus.",
"keywords": [
"laravel-horizon-prometheus-exporter",
"horizon",
"laravel",
"prometheus",
"exporter"
],
"homepage": "https://github.com/lkaemmerling/laravel-horizon-prometheus-exporter",
"license": "MIT",
"authors": [
{
"name": "Lukas Kämmerling",
"email": "[email protected]",
"homepage": "https://lukas-kaemmerling.de",
"role": "Developer"
}
],
"require": {
"php": "^7.1|^8.0",
"promphp/prometheus_client_php": "^1.0.3|^2.0.0",
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/config": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"laravel/horizon": "^4.0|^5.0"
},
"require-dev": {
"orchestra/testbench": "^v4.9|^5.3|^6.3|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^8.2|^9.0|^10.5",
"symfony/var-dumper": "^4.3|^5.1"
},
"autoload": {
"psr-4": {
"LKDevelopment\\HorizonPrometheusExporter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LKDevelopment\\HorizonPrometheusExporter\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"LKDevelopment\\HorizonPrometheusExporter\\HorizonPrometheusExporterServiceProvider"
]
}
}
}