AMQP driver for Bernard.
Via Composer
$ composer require bernard/amqp-driver
<?php
use Bernard\Driver\Amqp\Driver;
use PhpAmqpLib\Connection\AMQPStreamConnection;
$connection = new AMQPStreamConnection('localhost', 5672, 'guest', 'guest');
$driver = new Driver($connection, 'exchange');
The MIT License (MIT). Please see License File for more information.