teodos / contextio-laravel by teddy

Context.IO Laravel 4 Package
56
2
1
Package Data
Maintainer Username: teddy
Maintainer Contact: teddy@g6Solutions.com (Teddy)
Package Create Date: 2013-10-17
Package Last Update: 2013-10-17
License: Unknown
Last Refreshed: 2024-11-24 03:02:57
Package Statistics
Total Downloads: 56
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 2
Total Watchers: 1
Total Forks: 2
Total Open Issues: 1

Context.IO Laravel 4 Package

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();