Unable to resolve request 'queue/run'

Hello.
I’m trying to use queue server ( RabbitMQ ) in Yii2 with component yii2-queue ( driver-amqp-interop)
Installed through composer with dependencies:

“yiisoft/yii2-queue”: “^2.3”,
“php-amqplib/php-amqplib”: “^2.12”,
“enqueue/amqp-lib”: “^0.10.4”

And configured web.php

‘components’ => [
‘queue’ => [
‘class’ => \yii\queue\amqp_interop\Queue::class,
‘as log’ => \yii\queue\LogBehavior::class,
‘serializer’ => \yii\queue\serializers\JsonSerializer::class,
‘port’ => 5672,
‘user’ => ‘guest’,
‘password’ => ‘guest’,
‘queueName’ => ‘queue’,
‘driver’ => yii\queue\amqp_interop\Queue::ENQUEUE_AMQP_LIB,
],
]
$config[‘modules’][‘debug’] = [
‘class’ => ‘yii\debug\Module’,
‘panels’ => [
‘queue’ => \yii\queue\debug\Panel::class,
],
];

console.php

‘queue’ => [
‘class’ => \yii\queue\amqp_interop\Queue::class,
‘as log’ => \yii\queue\LogBehavior::class,
‘serializer’ => \yii\queue\serializers\JsonSerializer::class,
‘port’ => 5672,
‘user’ => ‘guest’,
‘password’ => ‘guest’,
‘queueName’ => ‘queue’,
‘driver’ => yii\queue\amqp_interop\Queue::ENQUEUE_AMQP_LIB,
‘path’ => ‘@runtime/queue’,
],

Code of controller action and job is taken from tutorial and works fine ( I can see added job in queue debug panel).
But when I run “yii queue/listen” or “yii queue/run” in console I receive “Unable to resolve the request “yii queue/listen”” (or “yii queue/run”).

yii\base\InvalidRouteException: Unable to resolve the request “queue/run”. in E:\WebServers7.4\home\wash\www\vendor\yiisoft\yii2\base\Module.php:537
Stack trace:
#0 E:\WebServers7.4\home\wash\www\vendor\yiisoft\yii2\console\Application.php(181): yii\base\Module->runAction(‘queue/run’, Array)
#1 E:\WebServers7.4\home\wash\www\vendor\yiisoft\yii2\console\Application.php(148): yii\console\Application->runAction(‘queue/run’, Array)
#2 E:\WebServers7.4\home\wash\www\vendor\yiisoft\yii2\base\Application.php(392): yii\console\Application->handleRequest(Object(yii\console\Request))
#3 E:\WebServers7.4\home\wash\www\yii(20): yii\base\Application->run()
#4 {main} Next yii\console\UnknownCommandException: Unknown command “queue/run”. in E:\WebServers7.4\home\wash\www\vendor\yiisoft\yii2\console\Application.php:184

(At the same time i can successfully run ‘yii/serve’ and it works).

Why those command doesn’t work?
Thank you.

Changed driver to db and all works fine.
Definately some crap in amqp_interop driver.