You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ vendor/bin/composer-dependency-analyser
Using config composer-dependency-analyser.php
Found 1 prod dependencies used only in dev paths!
(those should probably be moved to "require-dev" section in composer.json)
• ext-amqp
(scanned 18970 files in 2.376 s)
$ vendor/bin/composer-dependency-analyser --dump-usages 'ext-amqp'
Using config composer-dependency-analyser.php
Dumping sample usages of ext-amqp
(2 usages of 1 symbol in total)
• ext-amqp
AMQPEnvelope
tests/Unit/Shared/Infrastructure/Messaging/MessageBus/Symfony/Middleware/NewRelicTrackingMiddlewareTest.php:73
tests/Unit/Shared/Infrastructure/Messaging/MessageBus/Symfony/Middleware/NewRelicTrackingMiddlewareTest.php:105
The text was updated successfully, but these errors were encountered:
But there is no ext-amqp symbol usage in src, right? You just use symfony/amqp-messenger which has its own require of ext-amqp. Thus you dont rely on ext-amqp directly. In theory, symfony/amqp-messenger could change its implementation not to rely on that and your code would still work, right?
This is a false positive, because it is used in prod (src) as well.
We're using
symfony/amqp-messenger
and have the following code:The text was updated successfully, but these errors were encountered: