blob: a1161b39b0e603bcc3a2a7e2784b785741342729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/* Autoloader for hoa/praspel and its dependencies */
$vendor = '/usr/share/php';
// Dependencies
foreach ([
$vendor . '/Hoa/Compiler/autoload.php' => true,
$vendor . '/Hoa/Consistency/autoload.php' => true,
$vendor . '/Hoa/Exception/autoload.php' => true,
$vendor . '/Hoa/File/autoload.php' => true,
$vendor . '/Hoa/Iterator/autoload.php' => true,
$vendor . '/Hoa/Protocol/autoload.php' => true,
$vendor . '/Hoa/Realdom/autoload.php' => true,
$vendor . '/Hoa/Ustring/autoload.php' => true,
$vendor . '/Hoa/Visitor/autoload.php' => true,
] as $dep => $mandatory) {
if ($mandatory || file_exists($dep)) require_once($dep);
}
$fedoraHoaLoader->addNamespace('Hoa\\Praspel\\', __DIR__, true);
|