diff options
Diffstat (limited to 'php-bartlett-PHP-CompatInfo-5.1.0-autoload.php')
-rw-r--r-- | php-bartlett-PHP-CompatInfo-5.1.0-autoload.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/php-bartlett-PHP-CompatInfo-5.1.0-autoload.php b/php-bartlett-PHP-CompatInfo-5.1.0-autoload.php new file mode 100644 index 0000000..61e455b --- /dev/null +++ b/php-bartlett-PHP-CompatInfo-5.1.0-autoload.php @@ -0,0 +1,19 @@ +<?php +/** + * Autoloader for bartlett/php-compatinfo and its dependencies + */ + +require_once '/usr/share/php/Fedora/Autoloader/autoload.php'; + +\Fedora\Autoloader\Autoload::addPsr4('Bartlett\\CompatInfo\\', __DIR__); +\Fedora\Autoloader\Dependencies::required(array( + '/usr/share/php/Bartlett/Reflect/autoload.php', + '/usr/share/php/Bartlett/CompatInfoDb/autoload.php', + '/usr/share/php/PhpParser3/autoload.php', + '/usr/share/php/Psr/Log/autoload.php', + '/usr/share/php/Doctrine/Common/Cache/autoload.php', +)); +\Fedora\Autoloader\Dependencies::optional(array( + '/usr/share/php/Monolog/autoload.php', +)); + |