An open API service indexing awesome lists of open source software.

https://github.com/artbit/pubsub

PubSub design pattern implemented in PHP
https://github.com/artbit/pubsub

php pubsub pubsub-php

Last synced: about 1 year ago
JSON representation

PubSub design pattern implemented in PHP

Awesome Lists containing this project

README

          

# PubSub
[![Build Status](https://travis-ci.org/ArtBIT/PubSub.svg?branch=master)](https://travis-ci.org/ArtBIT/PubSub) [![GitHub license](https://img.shields.io/github/license/ArtBIT/PubSub.svg)](https://github.com/ArtBIT/PubSub) [![GitHub stars](https://img.shields.io/github/stars/ArtBIT/PubSub.svg)](https://github.com/ArtBIT/PubSub) [![awesomeness](https://img.shields.io/badge/awesomeness-maximum-red.svg)](https://github.com/ArtBIT/PubSub)

PubSub design pattern implemented in PHP

# Example Usage
```php
"sometype", "value" => "somevalue"]);

// This should result in
// Array
// (
// [0] => my.event
// [1] => Array
// (
// [type] => sometype
// [value] => somevalue
// )
//
// )
//
```

# License

[MIT](LICENSE)