mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
16 lines
444 B
PHP
16 lines
444 B
PHP
<?php
|
|
/* Autoloader for dev-php/sebastian-environment */
|
|
|
|
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
|
|
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
|
|
}
|
|
|
|
\Fedora\Autoloader\Autoload::addClassMap(
|
|
[
|
|
'sebastianbergmann\environment\console' => '/Console.php',
|
|
'sebastianbergmann\environment\operatingsystem' => '/OperatingSystem.php',
|
|
'sebastianbergmann\environment\runtime' => '/Runtime.php',
|
|
],
|
|
__DIR__
|
|
);
|