-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 loc) · 2.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "auxmoney/opentracing-bundle-monolog",
"description": "Symfony Opentracing bundle extension for Monolog",
"keywords": [
"auxmoney",
"opentracing",
"opentracing-bundle",
"symfony",
"symfony-bundle",
"distributed-tracing",
"monolog"
],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-json": "*",
"auxmoney/opentracing-bundle-core": "^1.3",
"opentracing/opentracing": "^1.0.1",
"symfony/monolog-bundle": "^3.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^1.5",
"squizlabs/php_codesniffer": "^3.6",
"phpmd/phpmd": "^2.12",
"symfony/filesystem": "*",
"symfony/process": "*"
},
"autoload": {
"psr-4": {
"Auxmoney\\OpentracingMonologBundle\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"Auxmoney\\OpentracingMonologBundle\\Tests\\": "./Tests/"
}
},
"scripts": {
"quality": [
"@phpcs",
"@phpmd",
"@phpstan",
"@phpunit"
],
"phpmd": "vendor/bin/phpmd . text cleancode,codesize,controversial,design,naming,unusedcode --exclude vendor,Tests",
"phpcs": "vendor/bin/phpcs",
"phpunit": [
"Tests/Functional/Scripts/requireMonolog.sh",
"XDEBUG_MODE=coverage vendor/bin/phpunit --colors=never --testsuite=unit"
],
"phpunit-local": "XDEBUG_MODE=coverage vendor/bin/phpunit --colors=never --testsuite=unit",
"phpunit-functional": [
"vendor/auxmoney/opentracing-bundle-core/Tests/Functional/Scripts/checkEnvironment.sh",
"vendor/auxmoney/opentracing-bundle-core/Tests/Functional/Scripts/setup.sh",
"Tests/Functional/Scripts/requireAdditionalVendors.sh",
"Tests/Functional/Scripts/requireMonolog.sh",
"vendor/auxmoney/opentracing-bundle-core/Tests/Functional/Scripts/createResetPoint.sh",
"vendor/bin/phpunit --colors=never --testsuite=functional --no-coverage",
"vendor/auxmoney/opentracing-bundle-core/Tests/Functional/Scripts/teardown.sh"
],
"phpstan": "vendor/bin/phpstan analyse --no-progress"
}
}