mirror of https://github.com/vtrois/kratos
40 lines
1.3 KiB
PHP
Executable File
40 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* Plugin Update Checker Library 5.2
|
|
* http://w-shadow.com/
|
|
*
|
|
* Copyright 2022 Janis Elsts
|
|
* Released under the MIT license. See license.txt for details.
|
|
*/
|
|
|
|
namespace YahnisElsts\PluginUpdateChecker\v5p2;
|
|
|
|
use YahnisElsts\PluginUpdateChecker\v5\PucFactory as MajorFactory;
|
|
use YahnisElsts\PluginUpdateChecker\v5p2\PucFactory as MinorFactory;
|
|
|
|
require __DIR__ . '/Puc/v5p2/Autoloader.php';
|
|
new Autoloader();
|
|
|
|
require __DIR__ . '/Puc/v5p2/PucFactory.php';
|
|
require __DIR__ . '/Puc/v5/PucFactory.php';
|
|
|
|
//Register classes defined in this version with the factory.
|
|
foreach (array(
|
|
'Plugin\\UpdateChecker' => Plugin\UpdateChecker::class,
|
|
'Theme\\UpdateChecker' => Theme\UpdateChecker::class,
|
|
|
|
'Vcs\\PluginUpdateChecker' => Vcs\PluginUpdateChecker::class,
|
|
'Vcs\\ThemeUpdateChecker' => Vcs\ThemeUpdateChecker::class,
|
|
|
|
'GitHubApi' => Vcs\GitHubApi::class,
|
|
'BitBucketApi' => Vcs\BitBucketApi::class,
|
|
'GitLabApi' => Vcs\GitLabApi::class,
|
|
)
|
|
as $pucGeneralClass => $pucVersionedClass) {
|
|
MajorFactory::addVersion($pucGeneralClass, $pucVersionedClass, '5.2');
|
|
//Also add it to the minor-version factory in case the major-version factory
|
|
//was already defined by another, older version of the update checker.
|
|
MinorFactory::addVersion($pucGeneralClass, $pucVersionedClass, '5.2');
|
|
}
|