forked from stechstudio/laravel-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.13 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
{
"name": "stechstudio/laravel-metrics",
"description": "Easily track metrics from Laravel events, or on your own",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joseph Szobody",
"email": "[email protected]"
},
{
"name": "Rob 'Bubba' Hines",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "^5.6|^6.0|^7.0|^8.0",
"influxdb/influxdb-php": "^1.14"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "~5.0",
"mockery/mockery": "^1.0",
"aws/aws-sdk-php": "^3.133"
},
"autoload": {
"psr-4": {
"STS\\Metrics\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/TestCase.php"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"STS\\Metrics\\MetricsServiceProvider"
],
"aliases": {
"Metrics": "STS\\Metrics\\MetricsFacade"
}
}
}
}