diff options
Diffstat (limited to 'php-hoa-protocol-autoload.php')
-rw-r--r-- | php-hoa-protocol-autoload.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/php-hoa-protocol-autoload.php b/php-hoa-protocol-autoload.php new file mode 100644 index 0000000..a8b3e6f --- /dev/null +++ b/php-hoa-protocol-autoload.php @@ -0,0 +1,16 @@ +<?php +/* Autoloader for hoa/protocol and its dependencies */ + +$vendor = '/usr/share/php'; + +// Dependencies +foreach ([ + $vendor . '/Hoa/Consistency/autoload.php' => true, + $vendor . '/Hoa/Exception/autoload.php' => true, + ] as $dep => $mandatory) { + if ($mandatory || file_exists($dep)) require_once($dep); +} + +$fedoraHoaLoader->addNamespace('Hoa\\Protocol\\', __DIR__, true); +require_once __DIR__ .'/Wrapper.php'; + |