-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
69 lines (69 loc) · 2.17 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
68
69
{
"name": "auxmoney/opentracing-bundle-doctrine-dbal",
"description": "Symfony Opentracing bundle extension for Doctrine DBAL and ORM",
"keywords": [
"auxmoney",
"opentracing",
"opentracing-bundle",
"symfony",
"symfony-bundle",
"distributed-tracing",
"doctrine",
"dbal",
"orm"
],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^8.0",
"ext-json": "*",
"auxmoney/opentracing-bundle-core": "^1.3",
"opentracing/opentracing": "^1.0.1",
"doctrine/doctrine-bundle": "^1.11|^2.0",
"doctrine/dbal": "^2.11"
},
"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": "*",
"symfony/yaml": "*",
"mtdowling/jmespath.php": "^2.6",
"guzzlehttp/guzzle": "^7.5"
},
"autoload": {
"psr-4": {
"Auxmoney\\OpentracingDoctrineDBALBundle\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"Auxmoney\\OpentracingDoctrineDBALBundle\\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": "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",
"vendor/auxmoney/opentracing-bundle-core/Tests/Functional/Scripts/createResetPoint.sh",
"Tests/Functional/Scripts/requireORMAndCreateResetPoint.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"
}
}