summaryrefslogtreecommitdiffstats
path: root/php-bartlett-PHP-Reflect-autoload.php
blob: a7606de38aa4e82521756d5b5be2f1ebc20d17b6 (plain)
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
<?php
/**
 * Autoloader for bartlett/php-reflect and its dependencies
 */

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

\Fedora\Autoloader\Autoload::addPsr4('Bartlett\\', dirname(__DIR__));
\Fedora\Autoloader\Dependencies::required(array(
    array(
        '/usr/share/php/Symfony/Component3/autoload.php',
        '/usr/share/php/Symfony/Component/autoload.php',
    ),
    '/usr/share/php/PhpParser2/autoload.php',
    '/usr/share/php/Seld/JsonLint/autoload.php',
    '/usr/share/php/JsonSchema/autoload.php',
    '/usr/share/php/SebastianBergmann/Version/autoload.php',
    '/usr/share/php/Doctrine/Common/Collections/autoload.php',
    '/usr/share/php/Doctrine/Common/Cache/autoload.php',
    '/usr/share/php/phpDocumentor/Reflection/DocBlock/autoload.php',
));
\Fedora\Autoloader\Dependencies::optional(array(
    '/usr/share/php/Bartlett/CompatInfo/autoload.php', // Needed when installed for 'Bartlett\CompatInfo\Analyser\CompatibilityAnalyser'
    '/usr/share/php/Bartlett/UmlWriter/autoload.php',
    '/usr/share/php/Psr/Log/autoload.php',
    '/usr/share/php/Monolog/autoload.php',
));

$vendorDir = '/usr/share/php';