First you need to get a hold of this library. There are two ways of doing this:
- Install Composer (see http://getcomposer.org/)
- Run
$ composer require cleentfaar/slack ~0.14
- Jump to step 2.
Run the following commands to bring in the needed libraries as submodules.
git submodule add https://github.com/cleentfaar/slack.git vendor/bundles/CL/Slack
Add the following two namespace entries to the registerNamespaces
call in your autoloader:
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'CL\Slack' => __DIR__ . '/../vendor/bundles/cleentfaar/slack',
// ...
));
Check out the usage documentation!