diff options
| author | Remi Collet <fedora@famillecollet.com> | 2016-10-31 18:34:38 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2016-10-31 18:34:38 +0100 | 
| commit | 8268e8b14b981b6f97860ab22f97e36bbee5963f (patch) | |
| tree | b21fdd76d836a5f98511de41178a6ecde62fffef /php-bartlett-PHP-CompatInfo-5.0.0-autoload.php | |
| parent | bba10a21efacc7719fe610375280667087201c4b (diff) | |
php-bartlett-PHP-CompatInfo: fedora autoloader
Diffstat (limited to 'php-bartlett-PHP-CompatInfo-5.0.0-autoload.php')
| -rw-r--r-- | php-bartlett-PHP-CompatInfo-5.0.0-autoload.php | 20 | 
1 files changed, 5 insertions, 15 deletions
diff --git a/php-bartlett-PHP-CompatInfo-5.0.0-autoload.php b/php-bartlett-PHP-CompatInfo-5.0.0-autoload.php index cf3b6a5..4297383 100644 --- a/php-bartlett-PHP-CompatInfo-5.0.0-autoload.php +++ b/php-bartlett-PHP-CompatInfo-5.0.0-autoload.php @@ -3,21 +3,11 @@   * Autoloader for bartlett/php-compatinfo and its dependencies   */ -$vendorDir = '/usr/share/php'; +require_once '/usr/share/php/Fedora/Autoloader/autoload.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__)), +\Fedora\Autoloader\Autoload::addPsr4('Bartlett\\CompatInfo\\', __DIR__); +\Fedora\Autoloader\Dependencies::required(array( +    '/usr/share/php/Bartlett/Reflect/autoload.php', +    '/usr/share/php/Bartlett/CompatInfoDb/autoload.php',  )); -// Dependencies -require_once $vendorDir . '/Bartlett/Reflect/autoload.php'; -require_once $vendorDir . '/Bartlett/CompatInfoDb/autoload.php';  | 
