summaryrefslogtreecommitdiffstats
path: root/php-bartlett-PHP-Reflect-autoload.php
blob: 4b8bcb5e78bec67456ef816f713392bacae416d4 (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
<?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/Symfony4/Component/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([
    '/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';