2017 © Pedro Peláez
 

library php-slack

A lightweight PHP implementation of Slack's API.

image

frlnc/php-slack

A lightweight PHP implementation of Slack's API.

  • Sunday, April 10, 2016
  • by ConnorVG
  • Repository
  • 5 Watchers
  • 128 Stars
  • 331,479 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 31 Forks
  • 10 Open issues
  • 6 Versions
  • 8 % Grown

The README.md

PHP Slack

A lightweight PHP implementation of Slack's API., (*1)

Provides

  • Frlnc\Slack\Contracts, (*2)

    A small set of contracts to allow for the consumption of the Slack API. Interactor, Response and ResponseFactory., (*3)

    • Interactor is in charge of providing the Http GET/POST methods.
    • Response is in charge of providing a simple Http response wrapper for holding the body, headers and status code.
    • ResponseFactory is in charge of providing a factory to instantiate and build the Response.

To use this package, it's simple. Though please note that this implementation is very lightweight meaning you'll need to do some more work than usual. This package doesn't provide methods such as Chat::postMessage(string message), it literally provides one method (Commander::execute(string command, array parameters = []))., (*4)

Here is a very simple example of using this package:, (*5)

<?php

use Frlnc\Slack\Http\SlackResponseFactory;
use Frlnc\Slack\Http\CurlInteractor;
use Frlnc\Slack\Core\Commander;

$interactor = new CurlInteractor;
$interactor->setResponseFactory(new SlackResponseFactory);

$commander = new Commander('xoxp-some-token-for-slack', $interactor);

$response = $commander->execute('chat.postMessage', [
    'channel' => '#general',
    'text'    => 'Hello, world!'
]);

if ($response['ok'])
{
    // Command worked
}
else
{
    // Command didn't work
}

Note that Commander will automatically format most inputs to Slack's requirements but attachments are not supported - you will need to manually call $text = Commander::format($text) to convert it., (*6)

The Versions

10/04 2016

dev-master

9999999-dev

A lightweight PHP implementation of Slack's API.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Connor Parks

slack

10/04 2016

1.0.3

1.0.3.0

A lightweight PHP implementation of Slack's API.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Connor Parks

slack

08/04 2016

1.0.2

1.0.2.0

A lightweight PHP implementation of Slack's API.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Connor Parks

slack

17/04 2015

1.0.1

1.0.1.0

A lightweight PHP implementation of Slack's API.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Connor Parks

slack

28/09 2014

dev-develop

dev-develop

A lightweight PHP implementation of Slack's API.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Connor Parks

slack

28/09 2014

1.0.0

1.0.0.0

A lightweight PHP implementation of Slack's API.

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Connor Parks

slack