قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 14:37:49 +00:00

* Require PHPStan * Add GitHub action * Remove bootstrap file from build * Add composer script for easier use
33 خطوط
701 B
PHP
33 خطوط
701 B
PHP
<?php
|
|
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
namespace Piwik;
|
|
|
|
use Piwik\Exception\NotYetInstalledException;
|
|
|
|
class Manifest
|
|
{
|
|
public static $files = [];
|
|
}
|
|
|
|
define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__) == '/' ? '' : dirname(__FILE__));
|
|
define('PIWIK_INCLUDE_PATH', PIWIK_DOCUMENT_ROOT);
|
|
|
|
require_once PIWIK_INCLUDE_PATH . '/core/bootstrap.php';
|
|
|
|
if (!defined('PIWIK_PRINT_ERROR_BACKTRACE')) {
|
|
define('PIWIK_PRINT_ERROR_BACKTRACE', false);
|
|
}
|
|
|
|
$environment = new \Piwik\Application\Environment(null);
|
|
try {
|
|
$environment->init();
|
|
} catch (NotYetInstalledException $e) {
|
|
}
|