envoylope/amqp-symfony

v0.1.0 2024-04-30 17:14 UTC

This package is auto-updated.

Last update: 2024-05-03 19:07:30 UTC


README

Build Status

Integrates PHP AMQP-Compat into a Symfony application.

Usage

Install this package with Composer as a Nytris Symfony bundle plugin:

$ composer install envoylope/amqp-symfony nytris/bundle

Configuring platform boot config

Once the Nytris package is configured, this plugin will be loaded:

nytris.config.php

<?php

declare(strict_types=1);

use Envoylope\NytrisPlugin\Amqp\Plugin;
use Nytris\Boot\BootConfig;
use Nytris\Boot\PlatformConfig;

$bootConfig = new BootConfig(new PlatformConfig(__DIR__ . '/var/cache/nytris/'));

$bootConfig->installPackage(new Plugin([...]));

return $bootConfig;

See also