├── .github └── workflows │ └── ci.yml ├── AmqpConnectionFactory.php ├── AmqpConsumer.php ├── AmqpContext.php ├── AmqpProducer.php ├── AmqpSubscriptionConsumer.php ├── Flags.php ├── LICENSE ├── README.md └── composer.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /AmqpConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/AmqpConnectionFactory.php -------------------------------------------------------------------------------- /AmqpConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/AmqpConsumer.php -------------------------------------------------------------------------------- /AmqpContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/AmqpContext.php -------------------------------------------------------------------------------- /AmqpProducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/AmqpProducer.php -------------------------------------------------------------------------------- /AmqpSubscriptionConsumer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/AmqpSubscriptionConsumer.php -------------------------------------------------------------------------------- /Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/Flags.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-enqueue/amqp-ext/HEAD/composer.json --------------------------------------------------------------------------------