-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
64 lines (64 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
59
60
61
62
63
64
{
"name": "stechstudio/laravel-metrics",
"description": "Easily track metrics from Laravel events, or on your own",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joseph Szobody",
"email": "joseph@stechstudio.com"
},
{
"name": "Rob 'Bubba' Hines",
"email": "bubba@stechstudio.com"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0|^9.0",
"mockery/mockery": "^1.6",
"aws/aws-sdk-php": "^3.2",
"guzzlehttp/guzzle": "^7.5",
"influxdb/influxdb-php": "^1.15",
"posthog/posthog-php": "^3.0",
"influxdata/influxdb-client-php": "^3.4",
"promphp/prometheus_client_php": "^2.10"
},
"suggest": {
"posthog/posthog-php": "PostHog integration",
"aws/aws-sdk-php": "AWS CloudWatch integration",
"influxdb/influxdb-php": "For integration with InfluxDB 1.7 or earlier",
"influxdata/influxdb-client-php": "For integration with InfluxDB 1.8 or later",
"promphp/prometheus_client_php": "For integration with Prometheus"
},
"autoload": {
"psr-4": {
"STS\\Metrics\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/TestCase.php"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"STS\\Metrics\\MetricsServiceProvider"
],
"aliases": {
"Metrics": "Metrics"
}
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}