This file is indexed.

/usr/share/php/PharIo/Manifest/autoload.php is in php-phar-io-manifest 1.0.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php

require_once 'PharIo/Version/autoload.php';

// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
    function($class) {
        static $classes = null;
        if ($classes === null) {
            $classes = array(
                'phario\\manifest\\application' => '/values/Application.php',
                'phario\\manifest\\applicationname' => '/values/ApplicationName.php',
                'phario\\manifest\\author' => '/values/Author.php',
                'phario\\manifest\\authorcollection' => '/values/AuthorCollection.php',
                'phario\\manifest\\authorcollectioniterator' => '/values/AuthorCollectionIterator.php',
                'phario\\manifest\\authorelement' => '/xml/AuthorElement.php',
                'phario\\manifest\\authorelementcollection' => '/xml/AuthorElementCollection.php',
                'phario\\manifest\\bundledcomponent' => '/values/BundledComponent.php',
                'phario\\manifest\\bundledcomponentcollection' => '/values/BundledComponentCollection.php',
                'phario\\manifest\\bundledcomponentcollectioniterator' => '/values/BundledComponentCollectionIterator.php',
                'phario\\manifest\\bundleselement' => '/xml/BundlesElement.php',
                'phario\\manifest\\componentelement' => '/xml/ComponentElement.php',
                'phario\\manifest\\componentelementcollection' => '/xml/ComponentElementCollection.php',
                'phario\\manifest\\containselement' => '/xml/ContainsElement.php',
                'phario\\manifest\\copyrightelement' => '/xml/CopyrightElement.php',
                'phario\\manifest\\copyrightinformation' => '/values/CopyrightInformation.php',
                'phario\\manifest\\elementcollection' => '/xml/ElementCollection.php',
                'phario\\manifest\\email' => '/values/Email.php',
                'phario\\manifest\\exception' => '/exceptions/Exception.php',
                'phario\\manifest\\extelement' => '/xml/ExtElement.php',
                'phario\\manifest\\extelementcollection' => '/xml/ExtElementCollection.php',
                'phario\\manifest\\extension' => '/values/Extension.php',
                'phario\\manifest\\extensionelement' => '/xml/ExtensionElement.php',
                'phario\\manifest\\invalidapplicationnameexception' => '/exceptions/InvalidApplicationNameException.php',
                'phario\\manifest\\invalidemailexception' => '/exceptions/InvalidEmailException.php',
                'phario\\manifest\\invalidurlexception' => '/exceptions/InvalidUrlException.php',
                'phario\\manifest\\library' => '/values/Library.php',
                'phario\\manifest\\license' => '/values/License.php',
                'phario\\manifest\\licenseelement' => '/xml/LicenseElement.php',
                'phario\\manifest\\manifest' => '/values/Manifest.php',
                'phario\\manifest\\manifestdocument' => '/xml/ManifestDocument.php',
                'phario\\manifest\\manifestdocumentexception' => '/exceptions/ManifestDocumentException.php',
                'phario\\manifest\\manifestdocumentloadingexception' => '/xml/ManifestDocumentLoadingException.php',
                'phario\\manifest\\manifestdocumentmapper' => '/ManifestDocumentMapper.php',
                'phario\\manifest\\manifestdocumentmapperexception' => '/exceptions/ManifestDocumentMapperException.php',
                'phario\\manifest\\manifestelement' => '/xml/ManifestElement.php',
                'phario\\manifest\\manifestelementexception' => '/exceptions/ManifestElementException.php',
                'phario\\manifest\\manifestloader' => '/ManifestLoader.php',
                'phario\\manifest\\manifestloaderexception' => '/exceptions/ManifestLoaderException.php',
                'phario\\manifest\\manifestserializer' => '/ManifestSerializer.php',
                'phario\\manifest\\phpelement' => '/xml/PhpElement.php',
                'phario\\manifest\\phpextensionrequirement' => '/values/PhpExtensionRequirement.php',
                'phario\\manifest\\phpversionrequirement' => '/values/PhpVersionRequirement.php',
                'phario\\manifest\\requirement' => '/values/Requirement.php',
                'phario\\manifest\\requirementcollection' => '/values/RequirementCollection.php',
                'phario\\manifest\\requirementcollectioniterator' => '/values/RequirementCollectionIterator.php',
                'phario\\manifest\\requireselement' => '/xml/RequiresElement.php',
                'phario\\manifest\\type' => '/values/Type.php',
                'phario\\manifest\\url' => '/values/Url.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd