summaryrefslogtreecommitdiffstats
path: root/php-bartlett-PHP-CompatInfo-autoload.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-06-26 11:32:05 +0200
committerRemi Collet <fedora@famillecollet.com>2015-06-26 11:32:05 +0200
commitbcc35e0d0bf613d92b4b3e6332c5a7f6de52252a (patch)
tree5e22cd041c2ad0a6087c4b312d1e242dd06d2eaf /php-bartlett-PHP-CompatInfo-autoload.php
parent740c0c023b7b3db601abf6091051bfceaf94dc83 (diff)
php-bartlett-PHP-CompatInfo: rewrite autoloader
Diffstat (limited to 'php-bartlett-PHP-CompatInfo-autoload.php')
-rw-r--r--php-bartlett-PHP-CompatInfo-autoload.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/php-bartlett-PHP-CompatInfo-autoload.php b/php-bartlett-PHP-CompatInfo-autoload.php
new file mode 100644
index 0000000..d40d05c
--- /dev/null
+++ b/php-bartlett-PHP-CompatInfo-autoload.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * Autoloader for bartlett/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->addPrefixes(array(
+ 'Bartlett\\CompatInfo' => dirname(dirname(__DIR__)),
+));
+if (is_file('/usr/share/php-bartlett-PHP-CompatInfo/compatinfo.sqlite')) {
+ putenv('BARTLETT_COMPATINFO_DB=/usr/share/php-bartlett-PHP-CompatInfo/compatinfo.sqlite');
+}
+
+// Dependencies
+require_once $vendorDir . '/Bartlett/Reflect/autoload.php';