pandorafms/pandora_console/update_manager_client/index.php

23 lines
448 B
PHP
Raw Normal View History

2022-03-28 12:20:36 +02:00
<?php
/**
* Sample file to perform offline updates.
*/
ini_set('display_errors', 1);
error_reporting(E_ALL);
require_once 'vendor/autoload.php';
use UpdateManager\UI\Manager;
$umc = new Manager(
public_url: '/',
settings: [
'homedir' => './test',
'allowOfflinePatches' => true,
'endpoint' => '/pandoraupdate7',
],
mode: Manager::MODE_OFFLINE,
composer: false,
);
$umc->run();