diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-04-06 16:40:48 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-04-06 16:40:48 +0200 |
commit | 3b9f947db673e17ee337c2d0685ef8a3e5ab0930 (patch) | |
tree | 1354676ab74a841a7218214eb7eba77200b37992 /php-hoa-regex-autoload.php |
php-hoa-regex: wip
Diffstat (limited to 'php-hoa-regex-autoload.php')
-rw-r--r-- | php-hoa-regex-autoload.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/php-hoa-regex-autoload.php b/php-hoa-regex-autoload.php new file mode 100644 index 0000000..a95679c --- /dev/null +++ b/php-hoa-regex-autoload.php @@ -0,0 +1,16 @@ +<?php +/* Autoloader for hoa/router and its dependencies */ + +$vendor = '/usr/share/php'; + +// Dependencies +foreach ([ + $vendor . '/Hoa/Consistency/autoload.php' => true, + $vendor . '/Hoa/Exception/autoload.php' => true, + $vendor . '/Hoa/Http/autoload.php' => true, + ] as $dep => $mandatory) { + if ($mandatory || file_exists($dep)) require_once($dep); +} + +$fedoraHoaLoader->addNamespace('Hoa\\Locale\\', __DIR__, true); + |