buchin/statcounter

Extract keyword using statcounter API

1.0.1 2021-08-08 09:42 UTC

This package is auto-updated.

Last update: 2024-04-08 16:11:25 UTC


README

Extract keyword using statcounter API

Installation

composer require buchin/statcounter

Usage

use Buchin\Statcounter\Statcounter;

$sc = new Statcounter('username', 'api_password');

$top_keywords = $sc->getKeywords(1000, 'top');

$recent_keywords = $sc->getKeywords(1000, 'recent');

Test

./vendor/bin/kahlan --reporter=verbose