summaryrefslogtreecommitdiffstats
path: root/php-bartlett-php-compatinfo-db-autoload.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-11-04 10:20:20 +0100
committerRemi Collet <fedora@famillecollet.com>2015-11-04 10:20:20 +0100
commitd97856ff91ba8d82c91f6bd4ae1e28bbc2f6ba5a (patch)
tree69ab5b6b135066013a565a360a2cc6ed1806ea7f /php-bartlett-php-compatinfo-db-autoload.php
php-bartlett-php-compatinfo-db: 1.0.0alpha1, new package, WIP
Diffstat (limited to 'php-bartlett-php-compatinfo-db-autoload.php')
-rw-r--r--php-bartlett-php-compatinfo-db-autoload.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/php-bartlett-php-compatinfo-db-autoload.php b/php-bartlett-php-compatinfo-db-autoload.php
new file mode 100644
index 0000000..05f0921
--- /dev/null
+++ b/php-bartlett-php-compatinfo-db-autoload.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * Autoloader php-bartlett/php-compatinfo-db/php-compatinfo 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('Bartlett\\CompatInfoDb\\', dirname(dirname(__DIR__)));