What Happened to the index.php File?

The following guide appears to be obsolete given the new file structure of the Matomo package. See https://developer.matomo.org/guides/querying-the-reporting-api.

<?php
use Matomo\API\Request;
use Matomo\FrontController;

define('PIWIK_INCLUDE_PATH', realpath('../..'));
define('PIWIK_USER_PATH', realpath('../..'));
define('PIWIK_ENABLE_DISPATCH', false);
define('PIWIK_ENABLE_ERROR_HANDLER', false);
define('PIWIK_ENABLE_SESSION_START', false);

require_once PIWIK_INCLUDE_PATH . "/index.php";
require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";

$environment = new \Piwik\Application\Environment(null);
$environment->init();

FrontController::getInstance()->init();

// This inits the API Request with the specified parameters
$request = new Request('
			module=API
			&method=Resolution.getResolution
			&idSite=7
			&date=yesterday
			&period=week
			&format=XML
			&filter_limit=3
			&token_auth=anonymous
');
// Calls the API and fetch XML data back
$result = $request->process();
echo $result;

Could someone please provide a more up-to-date guide to accessing the Matomo package directly with PHP?

Roddy

Oh, never mind, I found it. I was looking for it in the wrong place.

Roddy