]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/autoload.php
Jump to 2.3.6-dev and update release process
[github/wallabag/wallabag.git] / app / autoload.php
1 <?php
2
3 use Composer\Autoload\ClassLoader;
4 use Doctrine\Common\Annotations\AnnotationRegistry;
5
6 /**
7 * @var ClassLoader
8 */
9 $loader = require __DIR__ . '/../vendor/autoload.php';
10
11 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
12
13 return $loader;