tyler-king / activity
A simple Predis activity feed handler for my projects.
dev-master
2012-12-19 15:41 UTC
Requires
- php: >=5.4.0
- predis/predis: 0.8.*
This package is not auto-updated.
Last update: 2025-04-26 15:33:26 UTC
README
A simple activity feed handler using Predis which stores/pushes JSON objects to friends/followers, can even be used for simple notifications. Using this for personal projects not ment to be used for production stuff.
Fetch
The recommended way to install is through composer.
Just create a composer.json file for your project:
{ "minimum-stability" : "dev", "require": { "tyler-king/activity": "dev-master" } }
And run these two commands to install it:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar install
Requirements
- Redis Server (RDB or AOF)
- PHP 5.4.x
- Predis Library
Usage
See examples/
for code usage.