Skip to content
This repository has been archived by the owner on Dec 17, 2018. It is now read-only.

Latest commit

 

History

History
37 lines (23 loc) · 1 KB

installation.md

File metadata and controls

37 lines (23 loc) · 1 KB

Installation

Step 1) Get the library

First you need to get a hold of this library. There are two ways of doing this:

Method a) Using composer

  1. Install Composer (see http://getcomposer.org/)
  2. Run $ composer require cleentfaar/slack ~0.14
  3. Jump to step 2.

Method b) Using submodules

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',
    // ...
));

Step 2) Start using this package!

Check out the usage documentation!