summaryrefslogtreecommitdiffstats
path: root/php-hoa-zformat-autoload.php
diff options
context:
space:
mode:
Diffstat (limited to 'php-hoa-zformat-autoload.php')
-rw-r--r--php-hoa-zformat-autoload.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/php-hoa-zformat-autoload.php b/php-hoa-zformat-autoload.php
new file mode 100644
index 0000000..17b920e
--- /dev/null
+++ b/php-hoa-zformat-autoload.php
@@ -0,0 +1,15 @@
+<?php
+/* Autoloader for hoa/zformat 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\\Zformat\\', __DIR__, true);
+