File: autoload.php.tpl

package info (click to toggle)
phing 3.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,368 kB
  • sloc: php: 59,821; xml: 9,767; sql: 78; makefile: 39; sh: 14
file content (49 lines) | stat: -rw-r--r-- 2,337 bytes parent folder | download | duplicates (2)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php

// Require
require_once '/usr/share/php/SebastianBergmann/Version/autoload.php';
require_once '/usr/share/php/Symfony/Component/Console/autoload.php';
require_once '/usr/share/php/Symfony/Component/Yaml/autoload.php';

// Suggest
if (stream_resolve_include_path('/usr/share/php/GuzzleHttp/autoload.php')) { include_once '/usr/share/php/GuzzleHttp/autoload.php'; }
if (stream_resolve_include_path('/usr/share/php/Monolog/autoload.php')) { include_once '/usr/share/php/Monolog/autoload.php'; }
if (stream_resolve_include_path('/usr/share/php/PHPUnit/Autoload.php')) { include_once '/usr/share/php/PHPUnit/Autoload.php'; }
if (stream_resolve_include_path('/usr/share/php/Mail.php')) { include_once '/usr/share/php/Mail.php'; }
if (stream_resolve_include_path('/usr/share/php/Mail/mime.php')) { include_once '/usr/share/php/Mail/mime.php'; }
if (stream_resolve_include_path('/usr/share/php/SebastianBergmann/CodeCoverage/autoload.php')) { include_once '/usr/share/php/SebastianBergmann/CodeCoverage/autoload.php'; }
if (stream_resolve_include_path('/usr/share/php/PHP/CodeSniffer/autoload.php')) { include_once '/usr/share/php/PHP/CodeSniffer/autoload.php'; }
if (stream_resolve_include_path('/usr/share/php/Symfony/Component/Stopwatch/autoload.php')) { include_once '/usr/share/php/Symfony/Component/Stopwatch/autoload.php'; }
if (stream_resolve_include_path('/usr/share/php/JShrink/Minifier.php')) { include_once '/usr/share/php/JShrink/Minifier.php'; }

if (stream_resolve_include_path('/usr/share/php/PEAR.php')) {
  // https://github.com/pear/pear-core-minimal#included-files
  include_once '/usr/share/php/PEAR.php';
  include_once '/usr/share/php/PEAR/ErrorStack.php';
  include_once '/usr/share/php/Archive/Tar.php';
  include_once '/usr/share/php/OS/Guess.php';
  include_once '/usr/share/php/System.php';
}

// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                ___CLASSLIST___
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require ___BASEDIR___$classes[$cn];
        }
    },
    ___EXCEPTION___,
    ___PREPEND___
);
// @codeCoverageIgnoreEnd

// Files