forked from elastic/ecs-logging-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 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
{
"name": "elastic/ecs-logging",
"description": "Format and enrich your log files in the elastic common schema",
"keywords": ["log", "logging", "psr-3", "ecs", "elastic", "filebeat"],
"homepage": "https://www.elastic.co/guide/en/ecs/",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Philip Krauss",
"email": "[email protected]",
"homepage": "https://github.com/philkra"
},
{
"name": "Sergey Kleyman",
"homepage": "https://github.com/SergeyKleyman"
}
],
"require": {
"php": "^7.2||^8.0",
"psr/log": "^1.0.1",
"ext-json": "*"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"squizlabs/php_codesniffer": "3.*",
"monolog/monolog": "^2.0",
"phpunit/phpunit": "^8.5||^9.5||^10"
},
"autoload": {
"psr-4": {"Elastic\\": "src/Elastic"}
},
"autoload-dev": {
"psr-4": {"Elastic\\Tests\\": "tests/Elastic"}
},
"provide": {
"psr/log-implementation": "1.0.0"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpcs --standard=phpcs.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp src/Elastic",
"phpcs --standard=phpcs.xml --extensions=php --encoding=utf-8 --tab-width=4 -sp tests/Elastic",
"phpunit --log-junit=junit-${VERSION}.xml"
]
},
"config": {
"sort-packages": true
}
}