summaryrefslogtreecommitdiff
path: root/dev-php/theseer-tokenizer/files/autoload.php
blob: 67f5bd3506e00f8711b0d83c4b1d56d40702b083 (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/theseer-tokenizer */

if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
	require_once 'Fedora/Autoloader/autoload.php';
}

\Fedora\Autoloader\Autoload::addClassMap(
   [
		'theseer\\tokenizer\\exception' => '/Exception.php',
		'theseer\\tokenizer\\namespaceuri' => '/NamespaceUri.php',
		'theseer\\tokenizer\\namespaceuriexception' => '/NamespaceUriException.php',
		'theseer\\tokenizer\\token' => '/Token.php',
		'theseer\\tokenizer\\tokencollection' => '/TokenCollection.php',
		'theseer\\tokenizer\\tokencollectionexception' => '/TokenCollectionException.php',
		'theseer\\tokenizer\\tokenizer' => '/Tokenizer.php',
		'theseer\\tokenizer\\xmlserializer' => '/XMLSerializer.php',
	],
	__DIR__
);