Installation
Get sfRediskaPlugin
There are several ways how you can get plugin.
Clone from git
Clone from our plugin github repository to your Symfony project plugins directory:
git clone http://github.com/mastermix/sfRediskaPlugin.git
Add as submodule
Add plugin github repository to you project repository as git submodule:
git submodule add http://github.com/mastermix/sfRediskaPlugin.git plugins/sfRediskaPlugin
Export from SVN
Export from plugin SVN repository to your Symfony project plugins directory:
svn export http://svn.symfony-project.com/plugins/sfRediskaPlugin
Add as externals
Add plugin SVN repository to you project repository as externals:
svn propset svn:externals "plugins/sfRediskaPlugin http://svn.symfony-project.com/plugins/sfRediskaPlugin" .
Install it
Don't forget to enable the plugin in your ProjectConfiguration.class.php:
<?php class ProjectConfiguration extends sfProjectConfiguration { public function setup() { $this->enablePlugins('sfRediskaPlugin'); } } ?>