summaryrefslogtreecommitdiffstats
path: root/php-bartlett-php-compatinfo-db-1.2.0-autoload.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-10-31 17:50:45 +0100
committerRemi Collet <fedora@famillecollet.com>2016-10-31 17:50:45 +0100
commitd804728a8fec07a3c737b8aee9c388297f0209be (patch)
tree8e8460662ec131f435689b70f524de1ec1e7174b /php-bartlett-php-compatinfo-db-1.2.0-autoload.php
parent88a5f8ecd1866c4c8c6f6a36a9feaddba1e1e5a7 (diff)
php-bartlett-php-compatinfo-db: fedora autoloader
Diffstat (limited to 'php-bartlett-php-compatinfo-db-1.2.0-autoload.php')
-rw-r--r--php-bartlett-php-compatinfo-db-1.2.0-autoload.php17
1 files changed, 5 insertions, 12 deletions
diff --git a/php-bartlett-php-compatinfo-db-1.2.0-autoload.php b/php-bartlett-php-compatinfo-db-1.2.0-autoload.php
index 85623cb..bb3438f 100644
--- a/php-bartlett-php-compatinfo-db-1.2.0-autoload.php
+++ b/php-bartlett-php-compatinfo-db-1.2.0-autoload.php
@@ -3,17 +3,10 @@
* Autoloader php-bartlett/php-compatinfo-db/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';
- }
+\Fedora\Autoloader\Autoload::addPsr4('Bartlett\\CompatInfoDb\\', __DIR__);
+\Fedora\Autoloader\Dependencies::required(array(
+ '/usr/share/php/Composer/Semver/autoload.php',
+));
- $fedoraClassLoader = new \Symfony\Component\ClassLoader\ClassLoader();
- $fedoraClassLoader->register();
-}
-$fedoraClassLoader->addPrefix('Bartlett\\CompatInfoDb\\', dirname(dirname(__DIR__)));
-
-require_once $vendorDir . '/Composer/Semver/autoload.php';