vdlp/oc-amqplogging-plugin

This package is abandoned and no longer maintained. No replacement package was suggested.

Extend October CMS logging with an AMQP driver

Maintainers

Package info

github.com/vdlp/oc-amqplogging-plugin

Type:october-plugin

pkg:composer/vdlp/oc-amqplogging-plugin

Transparency log

Statistics

Installs: 12 751

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

2.4.1 2026-07-16 10:06 UTC

This package is auto-updated.

Last update: 2026-07-16 10:06:23 UTC


README

Extends October CMS logging with an AMQP driver.

  • Support for environment specific configuration (using the .env file).
  • Fallback logging when AMQP connection failed.

Requirements

  • PHP ^8.0
  • October CMS
    • ^3.0 (Laravel ^9.0 or ^10.0)
    • ^4.0 (Laravel ^12.0)

Installation

composer require vdlp/oc-amqplogging-plugin

Usage

Publish the configuration file.

php artisan vendor:publish --tag=vdlp-amqplogging-config

Configure your connection to the AMQP server.

VDLP_AMQPLOGGING_HOST = ""
VDLP_AMQPLOGGING_PORT = ""
VDLP_AMQPLOGGING_LOGIN = ""
VDLP_AMQPLOGGING_PASSWORD = ""
VDLP_AMQPLOGGING_VHOST = ""
VDLP_AMQPLOGGING_EXCHANGE = ""
VDLP_AMQPLOGGING_CHANNEL = ""

Use the Vdlp\AmqpLogging\Classes\AmqpLogger in the logging.php configuration:

'amqp' => [
    'driver' => 'custom',
    'via' => \Vdlp\AmqpLogging\Classes\AmqpLogger::class,
],