-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (28 loc) · 727 Bytes
/
composer.json
File metadata and controls
32 lines (28 loc) · 727 Bytes
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
{
"name": "dancryer/whoops-stackdriver",
"description": "Provides a handler for Whoops that outputs a StackDriver ReportedErrorEvent.",
"type": "library",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Dan Cryer",
"homepage": "https://www.dancryer.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"WhoopsStackdriver\\": "src/",
"WhoopsStackdriver\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.0|^8.0",
"ext-json": "*",
"filp/whoops": "^v2.7.2"
},
"require-dev": {
"phpunit/phpunit": "^9.1.5",
"symfony/var-dumper": "^5.1.0"
}
}