summaryrefslogtreecommitdiffstats
path: root/php-bartlett-umlwriter-autoload.php
blob: 4119ab8f8aceae43a2e5485874a0ac7f16d6b47f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Autoloader for bartlett/umlwriter and its dependencies
 */

require_once '/usr/share/php/Fedora/Autoloader/autoload.php';

\Fedora\Autoloader\Autoload::addPsr4('Bartlett\\UmlWriter\\', dirname(__DIR__));
\Fedora\Autoloader\Dependencies::required([
    '/usr/share/php/Bartlett/Reflect/autoload.php',
    [
        '/usr/share/php/Symfony4/Component/autoload.php',
        '/usr/share/php/Symfony3/Component/autoload.php',
        '/usr/share/php/Symfony/Component/autoload.php',
    ],
    '/usr/share/php/TokenReflection/autoload.php',
    '/usr/share/php/SebastianBergmann/Version/autoload.php',
]);