PHPackages                             dmamontov/stomp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. dmamontov/stomp

AbandonedArchivedLibrary[Queues &amp; Workers](/categories/queues)

dmamontov/stomp
===============

STOMP bindings for React.

1.0.0(6y ago)17MITPHPPHP &gt;=5.4

Since Nov 14Pushed 6y agoCompare

[ Source](https://github.com/dmamontov/stomp)[ Packagist](https://packagist.org/packages/dmamontov/stomp)[ RSS](/packages/dmamontov-stomp/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (4)Versions (10)Used By (0)

React/STOMP
===========

[](#reactstomp)

STOMP bindings for React.

STOMP is a messaging protocol. It is supported by most message queue brokers, such as [RabbitMQ](http://www.rabbitmq.com/), [Apollo](http://activemq.apache.org/apollo/) and many others.

A message queue is used for asynchronous inter-process communication. This can be useful for workers, general long-running tasks, or communication between long-running daemons.

[![Build Status](https://camo.githubusercontent.com/ef15a0f8bc6440fb9c57e4ba9e540e3d082e336a6d29af5d5f8359be5535ed37/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f72656163747068702f73746f6d702e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/reactphp/stomp) [![Code Climate](https://camo.githubusercontent.com/1cb9db5c05e5af9a1fcd8ae5205ef3f277c697ada801d607957c76ad3b9597eb/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f72656163747068702f73746f6d702f6261646765732f6770612e737667)](https://codeclimate.com/github/reactphp/stomp)

Install
-------

[](#install)

The recommended way to install react/stomp is [through composer](http://getcomposer.org).

```
{
    "require": {
        "react/stomp": "0.1.*"
    }
}
```

Example
-------

[](#example)

You can interact with a STOMP server by using the `React\Stomp\Client`.

```
