autoload_static_include_path.php 905 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // autoload_static.php @generated by Composer
  3. namespace Composer\Autoload;
  4. class ComposerStaticInitIncludePath
  5. {
  6. public static $prefixesPsr0 = array (
  7. 'M' =>
  8. array (
  9. 'Main\\Foo' =>
  10. array (
  11. 0 => __DIR__ . '/../..' . '/',
  12. ),
  13. 'Main\\Bar' =>
  14. array (
  15. 0 => __DIR__ . '/../..' . '/',
  16. ),
  17. ),
  18. );
  19. public static $classMap = array (
  20. 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
  21. );
  22. public static function getInitializer(ClassLoader $loader)
  23. {
  24. return \Closure::bind(function () use ($loader) {
  25. $loader->prefixesPsr0 = ComposerStaticInitIncludePath::$prefixesPsr0;
  26. $loader->classMap = ComposerStaticInitIncludePath::$classMap;
  27. }, null, ClassLoader::class);
  28. }
  29. }