-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
106 lines (106 loc) · 3.13 KB
/
Copy pathcomposer.json
File metadata and controls
106 lines (106 loc) · 3.13 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "iamfarhad/laravel-prometheus",
"description": "Production-ready Laravel Prometheus metrics package with built-in collectors for HTTP, database, cache, queue, events, errors, filesystem, and mail monitoring",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"prometheus",
"metrics",
"monitoring",
"observability",
"apm",
"performance",
"grafana",
"php",
"redis",
"counter",
"gauge",
"histogram",
"summary",
"middleware",
"collector",
"dashboard",
"devops",
"telemetry",
"analytics"
],
"homepage": "https://github.com/iamfarhad/laravel-prometheus",
"support": {
"issues": "https://github.com/iamfarhad/laravel-prometheus/issues",
"source": "https://github.com/iamfarhad/laravel-prometheus",
"docs": "https://github.com/iamfarhad/laravel-prometheus#readme"
},
"authors": [
{
"name": "Farhad Zand",
"email": "farhad.pd@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Iamfarhad\\Prometheus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iamfarhad\\Prometheus\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"illuminate/config": "^10.0|^11.0|^12.0|^13.0",
"illuminate/database": "^10.0|^11.0|^12.0|^13.0",
"illuminate/events": "^10.0|^11.0|^12.0|^13.0",
"illuminate/filesystem": "^10.0|^11.0|^12.0|^13.0",
"illuminate/log": "^10.0|^11.0|^12.0|^13.0",
"illuminate/mail": "^10.0|^11.0|^12.0|^13.0",
"illuminate/redis": "^10.0|^11.0|^12.0|^13.0",
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"promphp/prometheus_client_php": "^2.14"
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0|^12.0",
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
"mockery/mockery": "^1.0|^2.0",
"phpstan/phpstan": "^1.10 || ^2.0",
"laravel/pint": "^1.0"
},
"suggest": {
"ext-redis": "Required for Redis storage adapter",
"ext-apcu": "Required for APCu storage adapter",
"predis/predis": "Alternative Redis client"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/pint",
"ci": [
"@format",
"@analyse",
"@test"
]
},
"extra": {
"laravel": {
"providers": [
"Iamfarhad\\Prometheus\\PrometheusServiceProvider"
],
"aliases": {
"Prometheus": "Iamfarhad\\Prometheus\\Facades\\Prometheus"
}
},
"branch-alias": {
"dev-1.x": "1.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}