Laravel package for the usage of the official Clash of Clans API.
146
0
2
Package Data
Maintainer Username: raphaelbronsveld
Maintainer Contact: raphaelbronsveld@outlook.com (Raphael)
Package Create Date: 2016-03-16
Package Last Update: 2018-01-10
Home Page: https://raphaelbronsveld.com/clash
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:14:40
Package Statistics
Total Downloads: 146
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Laravel logo Clash Of API

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