forked from lexik/LexikMaintenanceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autoload.php.dist
39 lines (32 loc) · 1.61 KB
/
autoload.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
require_once __DIR__.'/vendor/symfony/src/Symfony/Component/ClassLoader/UniversalClassLoader.php';
use Symfony\Component\ClassLoader\UniversalClassLoader;
use Doctrine\Common\Annotations\AnnotationRegistry;
$loader = new UniversalClassLoader();
$loader->registerNamespaces(array(
'Symfony\\Tests' => __DIR__.'/vendor/symfony/tests',
'Symfony' => __DIR__.'/vendor/symfony/src',
'Doctrine\\Common' => __DIR__.'/vendor/doctrine-common/lib',
'Doctrine\\DBAL' => __DIR__.'/vendor/doctrine-dbal/lib',
'Doctrine' => __DIR__.'/vendor/doctrine/lib',
'Doctrine\\Common\\DataFixtures' => __DIR__.'/vendor/doctrine-fixtures/lib',
));
if (!function_exists('intl_get_error_code')) {
require_once __DIR__.'/vendor/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php';
$loader->registerPrefixFallbacks(array(__DIR__.'/vendor/symfony/src/Symfony/Component/Locale/Resources/stubs'));
}
$loader->register();
AnnotationRegistry::registerLoader(function($class) use ($loader) {
$loader->loadClass($class);
return class_exists($class, false);
});
AnnotationRegistry::registerFile(__DIR__.'/vendor/doctrine/lib/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php');
spl_autoload_register(function($class) {
$class = ltrim($class, '\\');
if (0 === strpos($class, 'Lexik\Bundle\MaintenanceBundle\\')) {
$file = __DIR__.'/'.str_replace('\\', '/', substr($class, strlen('Lexik\Bundle\MaintenanceBundle\\'))).'.php';
if (file_exists($file)) {
require $file;
}
}
});