The current version throws deprecated warning with PHP7.1 and PHPUnit. Upgrade the Markdown library to the current PHP Markdown Lib 1.7.0. Used composer to manage this library.
71 lines
2.4 KiB
PHP
71 lines
2.4 KiB
PHP
<?php
|
|
|
|
// autoload_real.php @generated by Composer
|
|
|
|
class ComposerAutoloaderInit7b34d7e50a62201ec5d5e526a5b8b35d
|
|
{
|
|
private static $loader;
|
|
|
|
public static function loadClassLoader($class)
|
|
{
|
|
if ('Composer\Autoload\ClassLoader' === $class) {
|
|
require __DIR__ . '/ClassLoader.php';
|
|
}
|
|
}
|
|
|
|
public static function getLoader()
|
|
{
|
|
if (null !== self::$loader) {
|
|
return self::$loader;
|
|
}
|
|
|
|
spl_autoload_register(array('ComposerAutoloaderInit7b34d7e50a62201ec5d5e526a5b8b35d', 'loadClassLoader'), true, true);
|
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
|
spl_autoload_unregister(array('ComposerAutoloaderInit7b34d7e50a62201ec5d5e526a5b8b35d', 'loadClassLoader'));
|
|
|
|
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
|
if ($useStaticLoader) {
|
|
require_once __DIR__ . '/autoload_static.php';
|
|
|
|
call_user_func(\Composer\Autoload\ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::getInitializer($loader));
|
|
} else {
|
|
$map = require __DIR__ . '/autoload_namespaces.php';
|
|
foreach ($map as $namespace => $path) {
|
|
$loader->set($namespace, $path);
|
|
}
|
|
|
|
$map = require __DIR__ . '/autoload_psr4.php';
|
|
foreach ($map as $namespace => $path) {
|
|
$loader->setPsr4($namespace, $path);
|
|
}
|
|
|
|
$classMap = require __DIR__ . '/autoload_classmap.php';
|
|
if ($classMap) {
|
|
$loader->addClassMap($classMap);
|
|
}
|
|
}
|
|
|
|
$loader->register(true);
|
|
|
|
if ($useStaticLoader) {
|
|
$includeFiles = Composer\Autoload\ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d::$files;
|
|
} else {
|
|
$includeFiles = require __DIR__ . '/autoload_files.php';
|
|
}
|
|
foreach ($includeFiles as $fileIdentifier => $file) {
|
|
composerRequire7b34d7e50a62201ec5d5e526a5b8b35d($fileIdentifier, $file);
|
|
}
|
|
|
|
return $loader;
|
|
}
|
|
}
|
|
|
|
function composerRequire7b34d7e50a62201ec5d5e526a5b8b35d($fileIdentifier, $file)
|
|
{
|
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
|
require $file;
|
|
|
|
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
|
}
|
|
}
|