Search by

envoylope / amqp-enqueue

asmblah

Package info

github.com/envoylope/amqp-enqueue

Type:project

pkg:composer/envoylope/amqp-enqueue

Statistics

Installs: 5 027

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.2.0 2026-09-07 10:28 UTC

This package is auto-updated.

Last update: 2026-09-07 10:29:58 UTC


README

Build Status

Integrates Enqueue into an application using PHP AMQP-Compat via Enqueue amqp-ext.

Usage

Install this package with Composer as a Nytris package:

$ composer install envoylope/amqp-enqueue

Configuring Nytris platform

Configure Nytris platform to use this package:

nytris.config.php:

<?php

declare(strict_types=1);

use Envoylope\EnqueueAmqp\EnqueueAmqpPackage;
use Nytris\Boot\BootConfig;
use Nytris\Boot\PlatformConfig;

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

// ...

$bootConfig->installPackage(new EnqueueAmqpPackage());

// ...

return $bootConfig;

You'll probably also want to install Nytris Shift Symfony for transpiled code caching.

See also