summaryrefslogtreecommitdiffstats
path: root/php-hoa-http-autoload.php
blob: 6315defbf7012ff0c12cc0dc5c3fc16a93a6a704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/* Autoloader for hoa/http and its dependencies */

$vendor = '/usr/share/php';

// Dependencies
foreach ([
	$vendor . '/Hoa/Consistency/autoload.php'    => true,
	$vendor . '/Hoa/Exception/autoload.php'      => true,
	$vendor . '/Hoa/Stream/autoload.php'      => true,
	] as $dep => $mandatory) {
	if ($mandatory || file_exists($dep)) require_once($dep);
}

$fedoraHoaLoader->addNamespace('Hoa\\Http\\', __DIR__, true);