summaryrefslogtreecommitdiffstats
path: root/php-bartlett-PHP-Reflect-autoload.php
blob: 09f93e829a4775395c2370a8d0b5638b707b52be (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
30
<?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([
    '/usr/share/php/PhpParser4/autoload.php',
    [
        '/usr/share/php/Symfony5/Component/autoload.php',
        '/usr/share/php/Symfony4/Component/autoload.php',
    ],
    '/usr/share/php/Seld/JsonLint/autoload.php',
    '/usr/share/php/JsonSchema5/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/Reflection2/autoload-type-resolver.php',
    '/usr/share/php/phpDocumentor/Reflection/DocBlock5/autoload.php',
]);
\Fedora\Autoloader\Dependencies::optional([
    '/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';