diff options
| author | Remi Collet <fedora@famillecollet.com> | 2015-12-07 10:10:02 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2015-12-07 10:10:02 +0100 | 
| commit | 20ac7954c7d9f1e069be5a391dac6359d64f5404 (patch) | |
| tree | d64daf429ddbcfb5fc09fe257d1c5065f442b8f7 /php-bartlett-PHP-CompatInfo-5.0.0-autoload.php | |
| parent | 28c0c5292476f557c3a51ab148508c4f65b60304 (diff) | |
php-bartlett-PHP-CompatInfo: 5.0.0 (wip)
Diffstat (limited to 'php-bartlett-PHP-CompatInfo-5.0.0-autoload.php')
| -rw-r--r-- | php-bartlett-PHP-CompatInfo-5.0.0-autoload.php | 23 | 
1 files changed, 23 insertions, 0 deletions
diff --git a/php-bartlett-PHP-CompatInfo-5.0.0-autoload.php b/php-bartlett-PHP-CompatInfo-5.0.0-autoload.php new file mode 100644 index 0000000..cf3b6a5 --- /dev/null +++ b/php-bartlett-PHP-CompatInfo-5.0.0-autoload.php @@ -0,0 +1,23 @@ +<?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__)), +)); + +// Dependencies +require_once $vendorDir . '/Bartlett/Reflect/autoload.php'; +require_once $vendorDir . '/Bartlett/CompatInfoDb/autoload.php';  | 
