2017 © Pedro Peláez
 

library phprsmq

PHP implementation of the Redis Simple Message Queue.

image

michsindelar/phprsmq

PHP implementation of the Redis Simple Message Queue.

  • Tuesday, May 29, 2018
  • by michsindelar
  • Repository
  • 1 Watchers
  • 0 Stars
  • 15 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

RSMQ: Redis Simple Message Queue for PHP, (*1)

PHP Redis Simple Message Queue

PHP implementation of https://github.com/smrchy/rsmq., (*2)

System Requirements

  • php7
  • php-redis extension

Installation

The recommended way to install this library is through Composer:, (*3)

$ composer require michsindelar/PhpRSMQ "^1.0.0"

Basic usage

<?php

require_once __DIR__.'/vendor/autoload.php';

use PhpRSMQ\RedisSMQFacade;

$rsmq = new RedisSMQFacade('127.0.0.1', 6379);
$rsmq->sendMessage('myQueue', 'Hello world!');

Tests

To execute the test suite, you'll need Composer:, (*4)

$ composer test

TODO

  • implement message receiving

Contributing

Feel free to make a PR after consultation. Please follow these rules and standards when you write your code: - SOLID - KISS (Keep it simple, Stupid!) - DRY (Don't Repeat Yourself) - design patterns - write documentation - fluent interface - write unit tests - Law of Demeter, (*5)

The Versions

29/05 2018

dev-master

9999999-dev

PHP implementation of the Redis Simple Message Queue.

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Michal Sindelar

29/05 2018

1.0.0

1.0.0.0

PHP implementation of the Redis Simple Message Queue.

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Michal Sindelar

29/05 2018

dev-develop

dev-develop

PHP implementation of the Redis Simple Message Queue.

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Michal Sindelar