forked from weaverryan/DoctrineExtensions-Taggable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoload.dist.php
23 lines (19 loc) · 842 Bytes
/
autoload.dist.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/*
* This file is part of the Doctrine Extensions Taggable package.
* (c) 2011 Fabien Pennequin <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (!class_exists('Symfony\\Component\\ClassLoader\\UniversalClassLoader')) {
require __DIR__.'/vendor/Symfony/Component/ClassLoader/UniversalClassLoader.php';
}
$loader = new Symfony\Component\ClassLoader\UniversalClassLoader();
$loader->registerNamespaces(array(
'Doctrine\\Common' => __DIR__.'/vendor/doctrine/common/lib',
'Doctrine\\DBAL' => __DIR__.'/vendor/doctrine/dbal/lib',
'Doctrine\\ORM' => __DIR__.'/vendor/doctrine/orm/lib',
'DoctrineExtensions\\Taggable' => __DIR__.'/lib',
));
$loader->register();