12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <?php
- $modules = [];
- foreach (glob(__DIR__ . '/modules/*.php') as $filename) {
- $modules = array_merge($modules, require($filename));
- }
- return [
- 'modules'=>$modules,
- 'params' => [
- 'appName' => 'console',
- ],
-
- //配置RabbitMq 部分
- /*
- 'bootstrap' => [
- 'queue', // The component registers own console commands
- ],
-
- 'components' => [
- 'queue' => [
- //'class' => \zhuravljov\yii\queue\amqp\Queue::class,
- //'class' => 'zhuravljov\yii\queue\amqp\Queue',
- 'class' => 'fecshop\app\console\modules\Amqp\block\Queue',
- 'host' => 'localhost',
- 'port' => 5672,
- 'user' => 'mqadmin',
- 'password' => 'mqadmin20177',
- //'queueName' => 'queue',
- 'queueName' => 'productDropshipQN',
- 'exchangeName' => 'productDropshipEX',
- 'routingKey' => 'productDropshipRT',
-
- ],
- ],
- */
-
- ];
|