summaryrefslogtreecommitdiffstats
path: root/php-phine-exception-autoload.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-10-27 15:47:15 +0100
committerRemi Collet <fedora@famillecollet.com>2015-10-27 15:47:15 +0100
commit884d6447c86c8da6942a4409af932d86c75e3a24 (patch)
treeb67d51a6f1887db91556ddbc8d2e6d1d7d235179 /php-phine-exception-autoload.php
php-phine-exception: 1.0.0, new package
Diffstat (limited to 'php-phine-exception-autoload.php')
-rw-r--r--php-phine-exception-autoload.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/php-phine-exception-autoload.php b/php-phine-exception-autoload.php
new file mode 100644
index 0000000..e0fd4e8
--- /dev/null
+++ b/php-phine-exception-autoload.php
@@ -0,0 +1,15 @@
+<?php
+/* Autoloader for phine/exception and its dependencies */
+
+$vendorDir = '/usr/share/php';
+// Use Symfony autoloader
+if (!isset($fedoraClassLoader) || !($fedoraClassLoader instanceof \Symfony\Component\ClassLoader\ClassLoader)) {
+ if (!class_exists('Symfony\\Component\\ClassLoader\\ClassLoader', false)) {
+ require_once $vendorDir . '/Symfony/Component/ClassLoader/ClassLoader.php';
+ }
+
+ $fedoraClassLoader = new \Symfony\Component\ClassLoader\ClassLoader();
+ $fedoraClassLoader->register();
+}
+
+$fedoraClassLoader->addPrefix('Phine\\Exception\\', dirname(dirname(__DIR__)));