calcinai/php-amqplib-bridge

Bridge for videlalvaro/php-amqplib to expose classes compatible with PECL::AMQP

v0.1.4 2017-05-22 22:34 UTC

This package is auto-updated.

Last update: 2024-03-22 08:01:05 UTC


README

Bridge for videlalvaro/php-amqplib to expose classes compatible with PECL::AMQP

This library is a polyfill for the PECL::AMQP Extension, using php-amqplib. The PECL extension is much faster than the php implemention, from what I understand, this is due to PHP's stream_socket_client(). This library enables you to develop/deploy on systems regardless of whether the extension is available. If the native extension is available, it will transparently be used instead of this bridge.

As a bonus, this library will provide type hints/code completion to your IDE (for the PECL extension) if it supports it.

Setup with Composer

{
  "require": {
      "calcinai/php-amqplib-bridge": "0.1.*"
  }
}

Usage

All classes, functions and exceptions should be equivelent to the native ones. Patches are welcome for any inconsistencies.

Examples

Unfortunately the documentation for the PECL extension is quite poor, but with a reasonable understanding of AMQP, you should be able to feel your way around. There are some usage examples on the (Polish?) man pages.

Thanks to @pdezwart for the method stubs, and the contributors to php-amqplib, which is largely what this library is based on.