Skip to content

Commit e935e8c

Browse files
committed
Move to PSR-4 style paths
1 parent da4b654 commit e935e8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+53
-53
lines changed

examples/autoload.php

Lines changed: 53 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -9,59 +9,59 @@
99
static $classMap;
1010
if (!isset($classMap)) {
1111
$classMap = [
12-
'libdns\decoder\decoder' => __DIR__ . '/../src/LibDNS/Decoder/Decoder.php',
13-
'libdns\decoder\decoderfactory' => __DIR__ . '/../src/LibDNS/Decoder/DecoderFactory.php',
14-
'libdns\decoder\decodingcontext' => __DIR__ . '/../src/LibDNS/Decoder/DecodingContext.php',
15-
'libdns\decoder\decodingcontextfactory' => __DIR__ . '/../src/LibDNS/Decoder/DecodingContextFactory.php',
16-
'libdns\encoder\encoder' => __DIR__ . '/../src/LibDNS/Encoder/Encoder.php',
17-
'libdns\encoder\encoderfactory' => __DIR__ . '/../src/LibDNS/Encoder/EncoderFactory.php',
18-
'libdns\encoder\encodingcontext' => __DIR__ . '/../src/LibDNS/Encoder/EncodingContext.php',
19-
'libdns\encoder\encodingcontextfactory' => __DIR__ . '/../src/LibDNS/Encoder/EncodingContextFactory.php',
20-
'libdns\enumeration' => __DIR__ . '/../src/LibDNS/Enumeration.php',
21-
'libdns\messages\message' => __DIR__ . '/../src/LibDNS/Messages/Message.php',
22-
'libdns\messages\messagefactory' => __DIR__ . '/../src/LibDNS/Messages/MessageFactory.php',
23-
'libdns\messages\messageopcodes' => __DIR__ . '/../src/LibDNS/Messages/MessageOpCodes.php',
24-
'libdns\messages\messageresponsecodes' => __DIR__ . '/../src/LibDNS/Messages/MessageResponseCodes.php',
25-
'libdns\messages\messagetypes' => __DIR__ . '/../src/LibDNS/Messages/MessageTypes.php',
26-
'libdns\packets\labelregistry' => __DIR__ . '/../src/LibDNS/Packets/LabelRegistry.php',
27-
'libdns\packets\packet' => __DIR__ . '/../src/LibDNS/Packets/Packet.php',
28-
'libdns\packets\packetfactory' => __DIR__ . '/../src/LibDNS/Packets/PacketFactory.php',
29-
'libdns\records\question' => __DIR__ . '/../src/LibDNS/Records/Question.php',
30-
'libdns\records\questionfactory' => __DIR__ . '/../src/LibDNS/Records/QuestionFactory.php',
31-
'libdns\records\rdata' => __DIR__ . '/../src/LibDNS/Records/RData.php',
32-
'libdns\records\rdatabuilder' => __DIR__ . '/../src/LibDNS/Records/RDataBuilder.php',
33-
'libdns\records\rdatafactory' => __DIR__ . '/../src/LibDNS/Records/RDataFactory.php',
34-
'libdns\records\record' => __DIR__ . '/../src/LibDNS/Records/Record.php',
35-
'libdns\records\recordcollection' => __DIR__ . '/../src/LibDNS/Records/RecordCollection.php',
36-
'libdns\records\recordcollectionfactory' => __DIR__ . '/../src/LibDNS/Records/RecordCollectionFactory.php',
37-
'libdns\records\recordtypes' => __DIR__ . '/../src/LibDNS/Records/RecordTypes.php',
38-
'libdns\records\resource' => __DIR__ . '/../src/LibDNS/Records/Resource.php',
39-
'libdns\records\resourcebuilder' => __DIR__ . '/../src/LibDNS/Records/ResourceBuilder.php',
40-
'libdns\records\resourcebuilderfactory' => __DIR__ . '/../src/LibDNS/Records/ResourceBuilderFactory.php',
41-
'libdns\records\resourceclasses' => __DIR__ . '/../src/LibDNS/Records/ResourceClasses.php',
42-
'libdns\records\resourcefactory' => __DIR__ . '/../src/LibDNS/Records/ResourceFactory.php',
43-
'libdns\records\resourceqclasses' => __DIR__ . '/../src/LibDNS/Records/ResourceQClasses.php',
44-
'libdns\records\resourceqtypes' => __DIR__ . '/../src/LibDNS/Records/ResourceQTypes.php',
45-
'libdns\records\resourcetypes' => __DIR__ . '/../src/LibDNS/Records/ResourceTypes.php',
46-
'libdns\records\typedefinitions\fielddefinition' => __DIR__ . '/../src/LibDNS/Records/TypeDefinitions/FieldDefinition.php',
47-
'libdns\records\typedefinitions\fielddefinitionfactory' => __DIR__ . '/../src/LibDNS/Records/TypeDefinitions/FieldDefinitionFactory.php',
48-
'libdns\records\typedefinitions\typedefinition' => __DIR__ . '/../src/LibDNS/Records/TypeDefinitions/TypeDefinition.php',
49-
'libdns\records\typedefinitions\typedefinitionfactory' => __DIR__ . '/../src/LibDNS/Records/TypeDefinitions/TypeDefinitionFactory.php',
50-
'libdns\records\typedefinitions\typedefinitionmanager' => __DIR__ . '/../src/LibDNS/Records/TypeDefinitions/TypeDefinitionManager.php',
51-
'libdns\records\typedefinitions\typedefinitionmanagerfactory' => __DIR__ . '/../src/LibDNS/Records/TypeDefinitions/TypeDefinitionManagerFactory.php',
52-
'libdns\records\types\anything' => __DIR__ . '/../src/LibDNS/Records/Types/Anything.php',
53-
'libdns\records\types\bitmap' => __DIR__ . '/../src/LibDNS/Records/Types/BitMap.php',
54-
'libdns\records\types\char' => __DIR__ . '/../src/LibDNS/Records/Types/Char.php',
55-
'libdns\records\types\characterstring' => __DIR__ . '/../src/LibDNS/Records/Types/CharacterString.php',
56-
'libdns\records\types\domainname' => __DIR__ . '/../src/LibDNS/Records/Types/DomainName.php',
57-
'libdns\records\types\ipv4address' => __DIR__ . '/../src/LibDNS/Records/Types/IPv4Address.php',
58-
'libdns\records\types\ipv6address' => __DIR__ . '/../src/LibDNS/Records/Types/IPv6Address.php',
59-
'libdns\records\types\long' => __DIR__ . '/../src/LibDNS/Records/Types/Long.php',
60-
'libdns\records\types\short' => __DIR__ . '/../src/LibDNS/Records/Types/Short.php',
61-
'libdns\records\types\type' => __DIR__ . '/../src/LibDNS/Records/Types/Type.php',
62-
'libdns\records\types\typebuilder' => __DIR__ . '/../src/LibDNS/Records/Types/TypeBuilder.php',
63-
'libdns\records\types\typefactory' => __DIR__ . '/../src/LibDNS/Records/Types/TypeFactory.php',
64-
'libdns\records\types\types' => __DIR__ . '/../src/LibDNS/Records/Types/Types.php',
12+
'libdns\decoder\decoder' => __DIR__ . '/../src/Decoder/Decoder.php',
13+
'libdns\decoder\decoderfactory' => __DIR__ . '/../src/Decoder/DecoderFactory.php',
14+
'libdns\decoder\decodingcontext' => __DIR__ . '/../src/Decoder/DecodingContext.php',
15+
'libdns\decoder\decodingcontextfactory' => __DIR__ . '/../src/Decoder/DecodingContextFactory.php',
16+
'libdns\encoder\encoder' => __DIR__ . '/../src/Encoder/Encoder.php',
17+
'libdns\encoder\encoderfactory' => __DIR__ . '/../src/Encoder/EncoderFactory.php',
18+
'libdns\encoder\encodingcontext' => __DIR__ . '/../src/Encoder/EncodingContext.php',
19+
'libdns\encoder\encodingcontextfactory' => __DIR__ . '/../src/Encoder/EncodingContextFactory.php',
20+
'libdns\enumeration' => __DIR__ . '/../src/Enumeration.php',
21+
'libdns\messages\message' => __DIR__ . '/../src/Messages/Message.php',
22+
'libdns\messages\messagefactory' => __DIR__ . '/../src/Messages/MessageFactory.php',
23+
'libdns\messages\messageopcodes' => __DIR__ . '/../src/Messages/MessageOpCodes.php',
24+
'libdns\messages\messageresponsecodes' => __DIR__ . '/../src/Messages/MessageResponseCodes.php',
25+
'libdns\messages\messagetypes' => __DIR__ . '/../src/Messages/MessageTypes.php',
26+
'libdns\packets\labelregistry' => __DIR__ . '/../src/Packets/LabelRegistry.php',
27+
'libdns\packets\packet' => __DIR__ . '/../src/Packets/Packet.php',
28+
'libdns\packets\packetfactory' => __DIR__ . '/../src/Packets/PacketFactory.php',
29+
'libdns\records\question' => __DIR__ . '/../src/Records/Question.php',
30+
'libdns\records\questionfactory' => __DIR__ . '/../src/Records/QuestionFactory.php',
31+
'libdns\records\rdata' => __DIR__ . '/../src/Records/RData.php',
32+
'libdns\records\rdatabuilder' => __DIR__ . '/../src/Records/RDataBuilder.php',
33+
'libdns\records\rdatafactory' => __DIR__ . '/../src/Records/RDataFactory.php',
34+
'libdns\records\record' => __DIR__ . '/../src/Records/Record.php',
35+
'libdns\records\recordcollection' => __DIR__ . '/../src/Records/RecordCollection.php',
36+
'libdns\records\recordcollectionfactory' => __DIR__ . '/../src/Records/RecordCollectionFactory.php',
37+
'libdns\records\recordtypes' => __DIR__ . '/../src/Records/RecordTypes.php',
38+
'libdns\records\resource' => __DIR__ . '/../src/Records/Resource.php',
39+
'libdns\records\resourcebuilder' => __DIR__ . '/../src/Records/ResourceBuilder.php',
40+
'libdns\records\resourcebuilderfactory' => __DIR__ . '/../src/Records/ResourceBuilderFactory.php',
41+
'libdns\records\resourceclasses' => __DIR__ . '/../src/Records/ResourceClasses.php',
42+
'libdns\records\resourcefactory' => __DIR__ . '/../src/Records/ResourceFactory.php',
43+
'libdns\records\resourceqclasses' => __DIR__ . '/../src/Records/ResourceQClasses.php',
44+
'libdns\records\resourceqtypes' => __DIR__ . '/../src/Records/ResourceQTypes.php',
45+
'libdns\records\resourcetypes' => __DIR__ . '/../src/Records/ResourceTypes.php',
46+
'libdns\records\typedefinitions\fielddefinition' => __DIR__ . '/../src/Records/TypeDefinitions/FieldDefinition.php',
47+
'libdns\records\typedefinitions\fielddefinitionfactory' => __DIR__ . '/../src/Records/TypeDefinitions/FieldDefinitionFactory.php',
48+
'libdns\records\typedefinitions\typedefinition' => __DIR__ . '/../src/Records/TypeDefinitions/TypeDefinition.php',
49+
'libdns\records\typedefinitions\typedefinitionfactory' => __DIR__ . '/../src/Records/TypeDefinitions/TypeDefinitionFactory.php',
50+
'libdns\records\typedefinitions\typedefinitionmanager' => __DIR__ . '/../src/Records/TypeDefinitions/TypeDefinitionManager.php',
51+
'libdns\records\typedefinitions\typedefinitionmanagerfactory' => __DIR__ . '/../src/Records/TypeDefinitions/TypeDefinitionManagerFactory.php',
52+
'libdns\records\types\anything' => __DIR__ . '/../src/Records/Types/Anything.php',
53+
'libdns\records\types\bitmap' => __DIR__ . '/../src/Records/Types/BitMap.php',
54+
'libdns\records\types\char' => __DIR__ . '/../src/Records/Types/Char.php',
55+
'libdns\records\types\characterstring' => __DIR__ . '/../src/Records/Types/CharacterString.php',
56+
'libdns\records\types\domainname' => __DIR__ . '/../src/Records/Types/DomainName.php',
57+
'libdns\records\types\ipv4address' => __DIR__ . '/../src/Records/Types/IPv4Address.php',
58+
'libdns\records\types\ipv6address' => __DIR__ . '/../src/Records/Types/IPv6Address.php',
59+
'libdns\records\types\long' => __DIR__ . '/../src/Records/Types/Long.php',
60+
'libdns\records\types\short' => __DIR__ . '/../src/Records/Types/Short.php',
61+
'libdns\records\types\type' => __DIR__ . '/../src/Records/Types/Type.php',
62+
'libdns\records\types\typebuilder' => __DIR__ . '/../src/Records/Types/TypeBuilder.php',
63+
'libdns\records\types\typefactory' => __DIR__ . '/../src/Records/Types/TypeFactory.php',
64+
'libdns\records\types\types' => __DIR__ . '/../src/Records/Types/Types.php',
6565
];
6666
}
6767

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)