teddy/contextio

There is no license information available for the latest version (dev-master) of this package.

Context.IO Laravel 4 Package

dev-master 2013-10-17 22:45 UTC

This package is auto-updated.

Last update: 2024-05-06 18:56:44 UTC


README

Laravel 4 package built on top of the official PHP Library for Context.IO

Original Library: https://github.com/contextio/PHP-ContextIO

Installation

Include the package in your composer file

"require": {
    "teddy/contextio": "dev-master"
}

Run composer update

Set up your Context.IO key and secret in 'config/packages/contextio/config.php'

Add the service provider in you app.php config file in the 'providers' array

'Teddy\Contextio\ContextioServiceProvider'

and add the alies also in the app.php config file in the 'aliases' array

'ContextIO'			  => 'Teddy\Contextio\ContextIO'

Usage

$ContextIO = new ContextIO();

$ContextIO->listAccounts();