PHP code example of pugofka / yametrika-sdk-laravel

1. Go to this page and download the library: Download pugofka/yametrika-sdk-laravel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

pugofka / yametrika-sdk-laravel example snippets


use Pugofka\Yametrika\YametrikaClient;

class AwesomeClass {
    
    public function setToken(YametrikaClient $client) 
    {
        $client->setToken('your_token');
    }
}

$ecomReport = resolve(\Pugofka\Yametrika\YametrikaEcomReports::class);
$ecomData = $ecomReport->getEcomData(\Carbon\Carbon::today()->subYears(1), \Carbon\Carbon::today(), $limit = 500, $offset = 1);
$ecomSources = $ecomReport->getEcomSourcesReport(\Carbon\Carbon::today()->subWeek(), \Carbon\Carbon::today(), $limit = 500, $offset = 1);