forked from renoki-co/horizon-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.52 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
{
"name": "renoki-co/horizon-exporter",
"description": "Export Laravel Horizon metrics using this Prometheus exporter.",
"keywords": ["laravel", "php", "horizon", "exporter", "prometheus", "grafana", "queues", "queue", "job"],
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-co/horizon-exporter",
"authors": [
{
"name": "Alex Renoki",
"homepage": "https://github.com/rennokki",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"renoki-co/laravel-exporter-contracts": "dev-master",
"laravel/horizon": "^5.8"
},
"autoload": {
"psr-4": {
"RenokiCo\\HorizonExporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RenokiCo\\HorizonExporter\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^7.6",
"orchestra/testbench-core": "^7.0",
"phpunit/phpunit": "^9.5.13",
"predis/predis": "^2.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/blueoceanideas/laravel-exporter-contracts"
}
],
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"RenokiCo\\HorizonExporter\\HorizonExporterServiceProvider"
]
}
}
}