summaryrefslogtreecommitdiffstats
path: root/php-bartlett-PHP-CompatInfo-autoload.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-12-07 10:10:02 +0100
committerRemi Collet <fedora@famillecollet.com>2015-12-07 10:10:02 +0100
commit20ac7954c7d9f1e069be5a391dac6359d64f5404 (patch)
treed64daf429ddbcfb5fc09fe257d1c5065f442b8f7 /php-bartlett-PHP-CompatInfo-autoload.php
parent28c0c5292476f557c3a51ab148508c4f65b60304 (diff)
php-bartlett-PHP-CompatInfo: 5.0.0 (wip)
Diffstat (limited to 'php-bartlett-PHP-CompatInfo-autoload.php')
-rw-r--r--php-bartlett-PHP-CompatInfo-autoload.php22
1 files changed, 0 insertions, 22 deletions
diff --git a/php-bartlett-PHP-CompatInfo-autoload.php b/php-bartlett-PHP-CompatInfo-autoload.php
deleted file mode 100644
index 62dd824..0000000
--- a/php-bartlett-PHP-CompatInfo-autoload.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?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';