This repository has been archived by the owner on Dec 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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-emagtechlabs-rabbitmqbundle",
"description": "Symfony Opentracing bundle extension for eMAGTechLabs/RabbitMqBundle",
"abandoned": "auxmoney/opentracing-bundle-amqplib-rabbitmq",
"keywords": [
"auxmoney",
"opentracing",
"opentracing-bundle",
"symfony",
"symfony-bundle",
"distributed-tracing",
"amqp",
"emagtechlabs",
"rabbitmq",
"queue",
"messaging",
"message-queue"
],
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^7.3.27",
"auxmoney/opentracing-bundle-core": "^v1.0",
"opentracing/opentracing": "^1.0.1",
"emag-tech-labs/rabbitmq-bundle": "^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^7.5",
"phpstan/phpstan": "^1.1",
"squizlabs/php_codesniffer": "^3.6",
"phpmd/phpmd": "^2.10",
"php-coveralls/php-coveralls": "^2.5",
"symfony/filesystem": "*",
"symfony/process": "*",
"symfony/yaml": "*",
"mtdowling/jmespath.php": "^2.6"
},
"autoload": {
"psr-4": {
"Auxmoney\\OpentracingEmagtechlabsRabbitMqBundle\\": "./"
}
},
"autoload-dev": {
"psr-4": {
"Auxmoney\\OpentracingEmagtechlabsRabbitMqBundle\\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": "phpdbg -qrr 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",
"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"
}
}