-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 2.05 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 2.05 KB
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": "aubes/ecs-logging-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle providing the Ecs log format",
"keywords": ["symfony", "symfony-bundle", "ecs", "elastic", "elastic-common-schema", "monolog", "logging"],
"license": "MIT",
"authors": [
{
"name": "Aurélian Bes"
}
],
"support": {
"issues": "https://github.com/aubes/ecs-logging-bundle/issues",
"source": "https://github.com/aubes/ecs-logging-bundle"
},
"require": {
"php": ">=8.2",
"elastic/ecs-logging": "^2.0",
"monolog/monolog": "^3.0",
"symfony/config": "^6.4 | ^7.4 | ^8.0",
"symfony/dependency-injection": "^6.4 | ^7.4 | ^8.0",
"symfony/http-foundation": "^6.4 | ^7.4 | ^8.0",
"symfony/http-kernel": "^6.4 | ^7.4 | ^8.0"
},
"suggest": {
"symfony/security-core": "Required for the user processor (default EcsUserProvider)"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"phpunit/phpunit": "^11.0 || ^12.0",
"symfony/security-bundle": "^6.4 | ^7.4 | ^8.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": { "Aubes\\EcsLoggingBundle\\": "src" },
"exclude-from-classmap": [
"/tests"
]
},
"autoload-dev": {
"psr-4": { "Aubes\\EcsLoggingBundle\\Tests\\": "tests" }
},
"scripts": {
"analyse": [
"@cs",
"@phpstan"
],
"cs": "php-cs-fixer fix --allow-risky=yes --config=.php-cs-fixer.php --dry-run --verbose",
"fix-cs": "php-cs-fixer fix --allow-risky=yes --config=.php-cs-fixer.php --show-progress=dots --verbose",
"phpstan": "phpstan analyse --memory-limit=512M",
"test": "phpunit tests",
"coverage": "phpunit tests --coverage-html coverage/ --coverage-clover coverage/clover.xml",
"coverage-check": "phpunit tests --coverage-text"
}
}