-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.49 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
{
"name": "aubes/ecs-logging-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle providing the Ecs log format",
"keywords": ["symfony", "bundle", "ecs", "mobolog"],
"license": "MIT",
"authors": [
{
"name": "Aurélian Bes"
}
],
"require": {
"php": ">=7.4",
"elastic/ecs-logging": "^1.0.3",
"monolog/monolog": "^2.0",
"symfony/polyfill-php80": "^1.0",
"symfony/http-foundation": "^5.4 | ^6.0",
"symfony/http-kernel": "^5.4 | ^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"phpmd/phpmd": "^2.10",
"phpunit/phpunit": ">=9.6",
"phpspec/prophecy-phpunit": ">=v2.0.1",
"symfony/security-bundle": "^5.4 | ^6.0",
"vimeo/psalm": "^5.9"
},
"autoload": {
"psr-4": { "Aubes\\EcsLoggingBundle\\": "src" },
"exclude-from-classmap": [
"/tests"
]
},
"autoload-dev": {
"psr-4": { "Aubes\\EcsLoggingBundle\\Tests\\": "tests" }
},
"scripts": {
"analyse": [
"@cs",
"@pmd",
"@psalm"
],
"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",
"pmd": "phpmd src text .pmd-ruleset.xml",
"psalm": "psalm --show-info=true",
"test": "phpunit tests"
}
}