Context.IO Laravel 4 Package
Laravel 4 package built on top of the official PHP Library for Context.IO, (*1)
Original Library: https://github.com/contextio/PHP-ContextIO, (*2)
Installation
Include the package in your composer file, (*3)
"require": {
"teddy/contextio": "dev-master"
}
Run composer update, (*4)
Set up your Context.IO key and secret in 'config/packages/contextio/config.php', (*5)
Add the service provider in you app.php config file in the 'providers' array, (*6)
'Teddy\Contextio\ContextioServiceProvider'
and add the alies also in the app.php config file in the 'aliases' array, (*7)
'ContextIO' => 'Teddy\Contextio\ContextIO'
Usage
$ContextIO = new ContextIO();
$ContextIO->listAccounts();