config.php 283 B

1234567891011121314
  1. <?php
  2. return [
  3. 'host' => '127.0.0.1',
  4. 'port' => 5672,
  5. 'vhost' => '/',
  6. 'mechanism' => 'AMQPLAIN',
  7. 'user' => 'admin',
  8. 'password' => '123456',
  9. 'timeout' => 10,
  10. 'heartbeat' => 60,
  11. 'heartbeat_callback' => function(){},
  12. 'error_callback' => null,
  13. ];