autoload_real_target_dir.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. // autoload_real.php @generated by Composer
  3. class ComposerAutoloaderInitTargetDir
  4. {
  5. private static $loader;
  6. public static function loadClassLoader($class)
  7. {
  8. if ('Composer\Autoload\ClassLoader' === $class) {
  9. require __DIR__ . '/ClassLoader.php';
  10. }
  11. }
  12. /**
  13. * @return \Composer\Autoload\ClassLoader
  14. */
  15. public static function getLoader()
  16. {
  17. if (null !== self::$loader) {
  18. return self::$loader;
  19. }
  20. spl_autoload_register(array('ComposerAutoloaderInitTargetDir', 'loadClassLoader'), true, true);
  21. self::$loader = $loader = new \Composer\Autoload\ClassLoader();
  22. spl_autoload_unregister(array('ComposerAutoloaderInitTargetDir', 'loadClassLoader'));
  23. $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
  24. if ($useStaticLoader) {
  25. require_once __DIR__ . '/autoload_static.php';
  26. call_user_func(\Composer\Autoload\ComposerStaticInitTargetDir::getInitializer($loader));
  27. } else {
  28. $map = require __DIR__ . '/autoload_namespaces.php';
  29. foreach ($map as $namespace => $path) {
  30. $loader->set($namespace, $path);
  31. }
  32. $map = require __DIR__ . '/autoload_psr4.php';
  33. foreach ($map as $namespace => $path) {
  34. $loader->setPsr4($namespace, $path);
  35. }
  36. $classMap = require __DIR__ . '/autoload_classmap.php';
  37. if ($classMap) {
  38. $loader->addClassMap($classMap);
  39. }
  40. }
  41. spl_autoload_register(array('ComposerAutoloaderInitTargetDir', 'autoload'), true, true);
  42. $loader->register(true);
  43. if ($useStaticLoader) {
  44. $includeFiles = Composer\Autoload\ComposerStaticInitTargetDir::$files;
  45. } else {
  46. $includeFiles = require __DIR__ . '/autoload_files.php';
  47. }
  48. foreach ($includeFiles as $fileIdentifier => $file) {
  49. composerRequireTargetDir($fileIdentifier, $file);
  50. }
  51. return $loader;
  52. }
  53. public static function autoload($class)
  54. {
  55. $dir = dirname(dirname(__DIR__)) . '/';
  56. $prefixes = array('Main\\Foo', 'Main\\Bar');
  57. foreach ($prefixes as $prefix) {
  58. if (0 !== strpos($class, $prefix)) {
  59. continue;
  60. }
  61. $path = $dir . implode('/', array_slice(explode('\\', $class), 2)).'.php';
  62. if (!$path = stream_resolve_include_path($path)) {
  63. return false;
  64. }
  65. require $path;
  66. return true;
  67. }
  68. }
  69. }
  70. function composerRequireTargetDir($fileIdentifier, $file)
  71. {
  72. if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  73. require $file;
  74. $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
  75. }
  76. }