-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
58 lines (58 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
57
58
{
"name": "gluedev/laravel-stackdriver",
"version": "0.2.2",
"description": "Enables logging, tracing and error reporting to Google Stackdriver for the Laravel framework",
"license": "MIT",
"authors": [
{
"name": "Diederik van den Burger",
"email": "[email protected]",
"homepage": "https://glue.group"
}
],
"homepage": "https://github.com/gluedev/laravel-stackdriver",
"keywords": [
"Laravel",
"Google",
"Stackdriver",
"Tracing",
"Logging",
"Error Reporting"
],
"require": {
"illuminate/support": ">=5.7",
"google/cloud-error-reporting": "^0.16.2",
"google/cloud-logging": "^1.14",
"opencensus/opencensus": "^0.7.0",
"opencensus/opencensus-exporter-stackdriver": "^0.1",
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"GlueDev\\Laravel\\Stackdriver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GlueDev\\Laravel\\Stackdriver\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"GlueDev\\Laravel\\Stackdriver\\StackdriverServiceProvider"
]
}
},
"archive": {
"exclude": [
"storage/screenshots"
]
}
}