blob: 40925e7dd6f5b419678de0d25c35936233144fb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/* Autoloader for dev-php/sebastian-diff */
if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
require_once '/usr/share/php/Fedora/Autoloader/autoload.php';
}
\Fedora\Autoloader\Autoload::addClassMap(
array(
'sebastianbergmann\diff\chunk' => '/Chunk.php',
'sebastianbergmann\diff\diff' => '/Diff.php',
'sebastianbergmann\diff\differ' => '/Differ.php',
'sebastianbergmann\diff\line' => '/Line.php',
'sebastianbergmann\diff\parser' => '/Parser.php',
'sebastianbergmann\diff\lcs\longestcommonsubsequence' => '/LCS/LongestCommonSubsequence.php',
'sebastianbergmann\diff\lcs\memoryefficientlongestcommonsubsequenceimplementation' => '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
'sebastianbergmann\diff\lcs\timeefficientlongestcommonsubsequenceimplementation' => '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
),
__DIR__
);
|