raphaelb/clashofapi

Laravel package for the usage of the official Clash of Clans API.

v3.0.0 2017-10-16 19:45 UTC

This package is not auto-updated.

Last update: 2024-04-26 14:01:42 UTC


README

Laravel package providing additional functionality to the official Clash Of Clans API.

Build Status GitHub Version StyleCI Total Downloads License

Composer require
"raphaelb/clashofapi": "~3.0"
API Key

Before this is going to work you need to get an api key from https://developer.clashofclans.com/#/

Insert this into your .env file.

CLASH_KEY=yourapikeyhere

Example
public function someMethodBeingCalled()
{
    $clans = app()->make('clash')
                    ->getClans(['name'  => 'Clans',
                                'limit' => '20']);
                                
    return view('yourview', compact('clans'));
}
In-depth examples

Please check the examples.md file.

License

Raphael Bronsveld - MIT Licensed

Suggestions? E-mail me at raphaelbronsveld@outlook.com