This repo is being kept for posterity and will be archived in a readonly state. If you're interested it can be forked under a new Composer namespace/GitHub organization.
Phergie plugin for enabling the use of custom aliases for existing bot commands.
This plugin is intended to complement the Command plugin.
The recommended method of installation is through composer.
{
"require": {
"phergie/phergie-irc-plugin-react-commandalias": "dev-master"
}
}
See Phergie documentation for more information on installing and enabling plugins.
new \Phergie\Irc\Plugin\React\CommandAlias\Plugin(array(
// All configuration is required
'aliases' => array(
// alias => command
'j' => 'join',
'p' => 'part',
'q' => 'quit',
'btc' => 'wolfram-alpha 1 BTC in US$',
// ...
),
))
To run the unit test suite:
curl -s https://getcomposer.org/installer | php
php composer.phar install
./vendor/bin/phpunit
Released under the BSD License. See LICENSE
.