2017 © Pedro Peláez
 

library bigboard-sdk-php

PHP SDK for bigboard.us

image

fromtheoutfit/bigboard-sdk-php

PHP SDK for bigboard.us

  • Monday, July 21, 2014
  • by btamilio
  • Repository
  • 3 Watchers
  • 0 Stars
  • 166 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

BigBoard SDK for PHP

This SDK provides a simple interface to the [BigBoard API] (https://bigboard.us/api)., (*1)

[BigBoard] (https://bigboard.us/) is a service that aggregates point-in-time events from other web services (and your own custom events) into a visually pleasing dashboard, allowing you to see what's really happening., (*2)

Installation

Installation via [Composer] (http://getcomposer.org) is highly recommended; update your project's composer.json file to include the BigBoard SDK:, (*3)

{
    "require": {
        "fromtheoutfit/bigboard-sdk-php": "dev-master"
    }
}

Basic Usage

require 'vendor/autoload.php';

// See BigBoard's service settings UI. 
// Connect an App and paste your token here:
$api_key = "<Your API Access Token Here>";

$client = new BigBoardSDK\APIClient ($api_key);

// Get My Account
$my_account = $client->getWhoAmI();
var_export ($my_account);


// Post Events
$events = array (
    array (
        "person_id" => "peter.gibbons@initech.com",
        "person_label" => "Peter Gibbons",
        "summary" => "Weekly TPS Report filed",
        "time" => (time()-300), 
        "label" => "TPS Reports"
    ),
    array (
        "person_id" => "bill.lundbergh@initech.com",
        "person_label" => "Bill Lundbergh",
        "summary" => "Report Rejected. Comment: Please include cover sheet. Mmmmkay?",
        "time" => time(),
        "label" => "TPS Reports",
            "url": "http://www.youtube.com/watch?v=Fy3rjQGc6lA"
    ),


);

$status = $client->sendEvents($events);
var_export ($status);

Documentation

More information on the BigBoard API is available at https://bigboard.us/api., (*4)

The Versions

21/07 2014

dev-master

9999999-dev

PHP SDK for bigboard.us

  Sources   Download

MIT

The Requires

 

by The Outfit, Inc.
by Brenden Tamilio

21/07 2014

v1.0.2

1.0.2.0

PHP SDK for bigboard.us

  Sources   Download

MIT

The Requires

 

by The Outfit, Inc.
by Brenden Tamilio

17/07 2014

v1.0.1

1.0.1.0

PHP SDK for bigboard.us

  Sources   Download

MIT

The Requires

 

by The Outfit, Inc.
by Brenden Tamilio