2016-02-16 14:19:57 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// autoload_real.php @generated by Composer
|
|
|
|
|
|
|
|
class ComposerAutoloaderInite149f47a700f596a9845d47c917afeaf
|
|
|
|
{
|
|
|
|
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('ComposerAutoloaderInite149f47a700f596a9845d47c917afeaf', 'loadClassLoader'), true, true);
|
|
|
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
|
|
|
spl_autoload_unregister(array('ComposerAutoloaderInite149f47a700f596a9845d47c917afeaf', 'loadClassLoader'));
|
|
|
|
|
|
|
|
$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);
|
|
|
|
|
2016-04-18 09:53:47 +02:00
|
|
|
$includeFiles = require __DIR__ . '/autoload_files.php';
|
|
|
|
foreach ($includeFiles as $fileIdentifier => $file) {
|
|
|
|
composerRequiree149f47a700f596a9845d47c917afeaf($fileIdentifier, $file);
|
|
|
|
}
|
|
|
|
|
2016-02-16 14:19:57 +01:00
|
|
|
return $loader;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-18 09:53:47 +02:00
|
|
|
function composerRequiree149f47a700f596a9845d47c917afeaf($fileIdentifier, $file)
|
2016-02-16 14:19:57 +01:00
|
|
|
{
|
2016-04-18 09:53:47 +02:00
|
|
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
|
|
|
require $file;
|
|
|
|
|
|
|
|
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
|
|
|
}
|
2016-02-16 14:19:57 +01:00
|
|
|
}
|