Simple Klout Api For Laravel 5
Laravel 5 Implementation of KloutAPIv2, (*1)
Install
Via Composer, (*2)
``` bash
$ composer require iqbal-hakim/klout, (*3)
Add the service provider to ```config/app.php``` in the `providers` array.
```php
'IqbalHakim\Klout\KloutServiceProvider'
If you want you can use the facade. Add the reference in config/app.php
to your aliases array., (*4)
'Klout' => 'IqbalHakim\Klout\Facades\Klout',
Configuration
You'll need to publish the package to start the configuration., (*5)
php artisan vendor:publish
This will create a config/klout_config.php
file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases., (*6)
Usage
``` php
Klout::KloutIDLookupById(, );, (*7)
Klout::KloutUserScore();
```, (*8)
License
The MIT License (MIT). Please see License File for more information., (*9)