-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
45 lines (45 loc) · 1.15 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
{
"name": "macpaw/monolog-gke-formatter",
"description": "Monolog JSON Formatter for Google StackDriver integration",
"homepage": "https://github.com/MacPaw/monolog-gke-formatter",
"type": "library",
"keywords": [
"Google",
"Stackdriver",
"Tracing",
"Logging",
"Error Reporting",
"Formator Error",
"log",
"logging"
],
"license": "OSL-3.0",
"authors": [
{
"name": "Andrii Nasinnyk",
"email": "[email protected]"
},
{
"name": "Yozhef Hisem",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"monolog/monolog": "^2.1",
"guzzlehttp/psr7": "^1.6|^2.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^1.2"
},
"autoload": {
"psr-4": {"MacPaw\\MonologGkeFormatter\\": "src"}
},
"scripts": {
"composer-validate": "composer validate",
"check-style": "vendor/bin/phpcs",
"fix-style": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan analyse"
}
}