windlace / amqp by cast

Amqp classes
517
0
0
Package Data
Maintainer Username: cast
Package Create Date: 2019-03-11
Package Last Update: 2019-12-11
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 15:13:11
Package Statistics
Total Downloads: 517
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 0
Total Forks: 1
Total Open Issues: 0

Install

composer require cast/amqp

Setup event listener:

class EventServiceProvider extends ServiceProvider
{
    /**
     * The event listener mappings for the application.
     *
     * @var array
     */
    protected $listen = [
        // ...
        LogEvent::class => [
            AmqpLogEventListener::class
        ],
    ];