This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_autoload.php
283 lines (282 loc) · 30.7 KB
/
ext_autoload.php
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<?php
$extensionClassesPath = t3lib_extMgm::extPath('extbase') . 'Classes/';
return array(
'tx_extbase_dispatcher' => $extensionClassesPath . 'Dispatcher.php',
'tx_extbase_exception' => $extensionClassesPath . 'Exception.php',
'tx_extbase_configuration_abstractconfigurationmanager' => $extensionClassesPath . 'Configuration/AbstractConfigurationManager.php',
'tx_extbase_configuration_backendconfigurationmanager' => $extensionClassesPath . 'Configuration/BackendConfigurationManager.php',
'tx_extbase_configuration_configurationmanager' => $extensionClassesPath . 'Configuration/ConfigurationManager.php',
'tx_extbase_configuration_configurationmanagerinterface' => $extensionClassesPath . 'Configuration/ConfigurationManagerInterface.php',
'tx_extbase_configuration_exception' => $extensionClassesPath . 'Configuration/Exception.php',
'tx_extbase_configuration_frontendconfigurationmanager' => $extensionClassesPath . 'Configuration/FrontendConfigurationManager.php',
'tx_extbase_configuration_exception_containerislocked' => $extensionClassesPath . 'Configuration/Exception/ContainerIsLocked.php',
'tx_extbase_configuration_exception_invalidconfigurationtype' => $extensionClassesPath . 'Configuration/Exception/InvalidConfigurationType.php',
'tx_extbase_configuration_exception_nosuchfile' => $extensionClassesPath . 'Configuration/Exception/NoSuchFile.php',
'tx_extbase_configuration_exception_nosuchoption' => $extensionClassesPath . 'Configuration/Exception/NoSuchOption.php',
'tx_extbase_configuration_exception_parseerror' => $extensionClassesPath . 'Configuration/Exception/ParseError.php',
'tx_extbase_core_bootstrap' => $extensionClassesPath . 'Core/Bootstrap.php',
'tx_extbase_domain_model_frontenduser' => $extensionClassesPath . 'Domain/Model/FrontendUser.php',
'tx_extbase_domain_model_frontendusergroup' => $extensionClassesPath . 'Domain/Model/FrontendUserGroup.php',
'tx_extbase_domain_repository_frontendusergrouprepository' => $extensionClassesPath . 'Domain/Repository/FrontendUserGroupRepository.php',
'tx_extbase_domain_repository_frontenduserrepository' => $extensionClassesPath . 'Domain/Repository/FrontendUserRepository.php',
'tx_extbase_domainobject_abstractdomainobject' => $extensionClassesPath . 'DomainObject/AbstractDomainObject.php',
'tx_extbase_domainobject_abstractentity' => $extensionClassesPath . 'DomainObject/AbstractEntity.php',
'tx_extbase_domainobject_abstractvalueobject' => $extensionClassesPath . 'DomainObject/AbstractValueObject.php',
'tx_extbase_domainobject_domainobjectinterface' => $extensionClassesPath . 'DomainObject/DomainObjectInterface.php',
'tx_extbase_error_error' => $extensionClassesPath . 'Error/Error.php',
'tx_extbase_error_message' => $extensionClassesPath . 'Error/Message.php',
'tx_extbase_error_notice' => $extensionClassesPath . 'Error/Notice.php',
'tx_extbase_error_result' => $extensionClassesPath . 'Error/Result.php',
'tx_extbase_error_warning' => $extensionClassesPath . 'Error/Warning.php',
'tx_extbase_mvc_dispatcher' => $extensionClassesPath . 'MVC/Dispatcher.php',
'tx_extbase_mvc_exception' => $extensionClassesPath . 'MVC/Exception.php',
'tx_extbase_mvc_request' => $extensionClassesPath . 'MVC/Request.php',
'tx_extbase_mvc_requesthandlerinterface' => $extensionClassesPath . 'MVC/RequestHandlerInterface.php',
'tx_extbase_mvc_requesthandlerresolver' => $extensionClassesPath . 'MVC/RequestHandlerResolver.php',
'tx_extbase_mvc_requestinterface' => $extensionClassesPath . 'MVC/RequestInterface.php',
'tx_extbase_mvc_response' => $extensionClassesPath . 'MVC/Response.php',
'tx_extbase_mvc_responseinterface' => $extensionClassesPath . 'MVC/ResponseInterface.php',
'tx_extbase_mvc_controller_abstractcontroller' => $extensionClassesPath . 'MVC/Controller/AbstractController.php',
'tx_extbase_mvc_controller_actioncontroller' => $extensionClassesPath . 'MVC/Controller/ActionController.php',
'tx_extbase_mvc_controller_argument' => $extensionClassesPath . 'MVC/Controller/Argument.php',
'tx_extbase_mvc_controller_argumenterror' => $extensionClassesPath . 'MVC/Controller/ArgumentError.php',
'tx_extbase_mvc_controller_arguments' => $extensionClassesPath . 'MVC/Controller/Arguments.php',
'tx_extbase_mvc_controller_argumentsvalidator' => $extensionClassesPath . 'MVC/Controller/ArgumentsValidator.php',
'tx_extbase_mvc_controller_controllercontext' => $extensionClassesPath . 'MVC/Controller/ControllerContext.php',
'tx_extbase_mvc_controller_controllerinterface' => $extensionClassesPath . 'MVC/Controller/ControllerInterface.php',
'tx_extbase_mvc_controller_flashmessages' => $extensionClassesPath . 'MVC/Controller/FlashMessages.php',
'tx_extbase_mvc_controller_mvcpropertymappingconfiguration' => $extensionClassesPath . 'MVC/Controller/MvcPropertyMappingConfiguration.php',
'tx_extbase_mvc_controller_exception_requiredargumentmissingexception' => $extensionClassesPath . 'MVC/Controller/Exception/RequiredArgumentMissingException.php',
'tx_extbase_mvc_exception_infiniteloop' => $extensionClassesPath . 'MVC/Exception/InfiniteLoop.php',
'tx_extbase_mvc_exception_invalidactionname' => $extensionClassesPath . 'MVC/Exception/InvalidActionName.php',
'tx_extbase_mvc_exception_invalidargumentname' => $extensionClassesPath . 'MVC/Exception/InvalidArgumentName.php',
'tx_extbase_mvc_exception_invalidargumenttype' => $extensionClassesPath . 'MVC/Exception/InvalidArgumentType.php',
'tx_extbase_mvc_exception_invalidargumentvalue' => $extensionClassesPath . 'MVC/Exception/InvalidArgumentValue.php',
'tx_extbase_mvc_exception_invalidcontroller' => $extensionClassesPath . 'MVC/Exception/InvalidController.php',
'tx_extbase_mvc_exception_invalidcontrollername' => $extensionClassesPath . 'MVC/Exception/InvalidControllerName.php',
'tx_extbase_mvc_exception_invalidextensionname' => $extensionClassesPath . 'MVC/Exception/InvalidExtensionName.php',
'tx_extbase_mvc_exception_invalidmarker' => $extensionClassesPath . 'MVC/Exception/InvalidMarker.php',
'tx_extbase_mvc_exception_invalidornorequesthash' => $extensionClassesPath . 'MVC/Exception/InvalidOrNoRequestHash.php',
'tx_extbase_mvc_exception_invalidrequestmethod' => $extensionClassesPath . 'MVC/Exception/InvalidRequestMethod.php',
'tx_extbase_mvc_exception_invalidrequesttype' => $extensionClassesPath . 'MVC/Exception/InvalidRequestType.php',
'tx_extbase_mvc_exception_invalidtemplateresource' => $extensionClassesPath . 'MVC/Exception/InvalidTemplateResource.php',
'tx_extbase_mvc_exception_invaliduripattern' => $extensionClassesPath . 'MVC/Exception/InvalidUriPattern.php',
'tx_extbase_mvc_exception_invalidviewhelper' => $extensionClassesPath . 'MVC/Exception/InvalidViewHelper.php',
'tx_extbase_mvc_exception_nosuchaction' => $extensionClassesPath . 'MVC/Exception/NoSuchAction.php',
'tx_extbase_mvc_exception_nosuchargument' => $extensionClassesPath . 'MVC/Exception/NoSuchArgument.php',
'tx_extbase_mvc_exception_nosuchcontroller' => $extensionClassesPath . 'MVC/Exception/NoSuchController.php',
'tx_extbase_mvc_exception_stopaction' => $extensionClassesPath . 'MVC/Exception/StopAction.php',
'tx_extbase_mvc_exception_unsupportedrequesttype' => $extensionClassesPath . 'MVC/Exception/UnsupportedRequestType.php',
'tx_extbase_mvc_view_abstractview' => $extensionClassesPath . 'MVC/View/AbstractView.php',
'tx_extbase_mvc_view_emptyview' => $extensionClassesPath . 'MVC/View/EmptyView.php',
'tx_extbase_mvc_view_notfoundview' => $extensionClassesPath . 'MVC/View/NotFoundView.php',
'tx_extbase_mvc_view_viewinterface' => $extensionClassesPath . 'MVC/View/ViewInterface.php',
'tx_extbase_mvc_web_abstractrequesthandler' => $extensionClassesPath . 'MVC/Web/AbstractRequestHandler.php',
'tx_extbase_mvc_web_backendrequesthandler' => $extensionClassesPath . 'MVC/Web/BackendRequestHandler.php',
'tx_extbase_mvc_web_frontendrequesthandler' => $extensionClassesPath . 'MVC/Web/FrontendRequestHandler.php',
'tx_extbase_mvc_web_request' => $extensionClassesPath . 'MVC/Web/Request.php',
'tx_extbase_mvc_web_requestbuilder' => $extensionClassesPath . 'MVC/Web/RequestBuilder.php',
'tx_extbase_mvc_web_response' => $extensionClassesPath . 'MVC/Web/Response.php',
'tx_extbase_mvc_web_routing_uribuilder' => $extensionClassesPath . 'MVC/Web/Routing/UriBuilder.php',
'tx_extbase_object_exception' => $extensionClassesPath . 'Object/Exception.php',
'tx_extbase_object_manager' => $extensionClassesPath . 'Object/Manager.php',
'tx_extbase_object_objectmanager' => $extensionClassesPath . 'Object/ObjectManager.php',
'tx_extbase_object_objectmanagerinterface' => $extensionClassesPath . 'Object/ObjectManagerInterface.php',
'tx_extbase_object_container_classinfo' => $extensionClassesPath . 'Object/Container/ClassInfo.php',
'tx_extbase_object_container_classinfocache' => $extensionClassesPath . 'Object/Container/ClassInfoCache.php',
'tx_extbase_object_container_classinfofactory' => $extensionClassesPath . 'Object/Container/ClassInfoFactory.php',
'tx_extbase_object_container_container' => $extensionClassesPath . 'Object/Container/Container.php',
'tx_extbase_object_container_exception_cannotinitializecacheexception' => $extensionClassesPath . 'Object/Container/Exception/CannotInitializeCacheException.php',
'tx_extbase_object_container_exception_toomanyrecursionlevelsexception' => $extensionClassesPath . 'Object/Container/Exception/TooManyRecursionLevelsException.php',
'tx_extbase_object_container_exception_unknownobjectexception' => $extensionClassesPath . 'Object/Container/Exception/UnknownObjectException.php',
'tx_extbase_object_exception_cannotbuildobject' => $extensionClassesPath . 'Object/Exception/CannotBuildObject.php',
'tx_extbase_object_exception_cannotreconstituteobject' => $extensionClassesPath . 'Object/Exception/CannotReconstituteObject.php',
'tx_extbase_object_invalidclass' => $extensionClassesPath . 'Object/Exception/InvalidClass.php',
'tx_extbase_object_invalidobject' => $extensionClassesPath . 'Object/Exception/InvalidObject.php',
'tx_extbase_object_invalidobjectconfiguration' => $extensionClassesPath . 'Object/Exception/InvalidObjectConfiguration.php',
'tx_extbase_object_objectalreadyregistered' => $extensionClassesPath . 'Object/Exception/ObjectAlreadyRegistered.php',
'tx_extbase_object_unknownclass' => $extensionClassesPath . 'Object/Exception/UnknownClass.php',
'tx_extbase_object_unknowninterface' => $extensionClassesPath . 'Object/Exception/UnknownInterface.php',
'tx_extbase_object_unresolveddependencies' => $extensionClassesPath . 'Object/Exception/UnresolvedDependencies.php',
'tx_extbase_object_exception_wrongscope' => $extensionClassesPath . 'Object/Exception/WrongScope.php',
'tx_extbase_persistence_backend' => $extensionClassesPath . 'Persistence/Backend.php',
'tx_extbase_persistence_backendinterface' => $extensionClassesPath . 'Persistence/BackendInterface.php',
'tx_extbase_persistence_exception' => $extensionClassesPath . 'Persistence/Exception.php',
'tx_extbase_persistence_identitymap' => $extensionClassesPath . 'Persistence/IdentityMap.php',
'tx_extbase_persistence_lazyloadingproxy' => $extensionClassesPath . 'Persistence/LazyLoadingProxy.php',
'tx_extbase_persistence_lazyobjectstorage' => $extensionClassesPath . 'Persistence/LazyObjectStorage.php',
'tx_extbase_persistence_loadingstrategyinterface' => $extensionClassesPath . 'Persistence/LoadingStrategyInterface.php',
'tx_extbase_persistence_manager' => $extensionClassesPath . 'Persistence/Manager.php',
'tx_extbase_persistence_managerinterface' => $extensionClassesPath . 'Persistence/ManagerInterface.php',
'tx_extbase_persistence_objectmonitoringinterface' => $extensionClassesPath . 'Persistence/ObjectMonitoringInterface.php',
'tx_extbase_persistence_objectstorage' => $extensionClassesPath . 'Persistence/ObjectStorage.php',
'tx_extbase_persistence_propertytype' => $extensionClassesPath . 'Persistence/PropertyType.php',
'tx_extbase_persistence_query' => $extensionClassesPath . 'Persistence/Query.php',
'tx_extbase_persistence_queryfactory' => $extensionClassesPath . 'Persistence/QueryFactory.php',
'tx_extbase_persistence_queryfactoryinterface' => $extensionClassesPath . 'Persistence/QueryFactoryInterface.php',
'tx_extbase_persistence_queryinterface' => $extensionClassesPath . 'Persistence/QueryInterface.php',
'tx_extbase_persistence_queryresult' => $extensionClassesPath . 'Persistence/QueryResult.php',
'tx_extbase_persistence_queryresultinterface' => $extensionClassesPath . 'Persistence/QueryResultInterface.php',
'tx_extbase_persistence_querysettingsinterface' => $extensionClassesPath . 'Persistence/QuerySettingsInterface.php',
'tx_extbase_persistence_repository' => $extensionClassesPath . 'Persistence/Repository.php',
'tx_extbase_persistence_repositoryinterface' => $extensionClassesPath . 'Persistence/RepositoryInterface.php',
'tx_extbase_persistence_session' => $extensionClassesPath . 'Persistence/Session.php',
'tx_extbase_persistence_typo3querysettings' => $extensionClassesPath . 'Persistence/Typo3QuerySettings.php',
'tx_extbase_persistence_exception_cleanstatenotmemorized' => $extensionClassesPath . 'Persistence/Exception/CleanStateNotMemorized.php',
'tx_extbase_persistence_exception_illegalobjecttype' => $extensionClassesPath . 'Persistence/Exception/IllegalObjectType.php',
'tx_extbase_persistence_exception_invalidclass' => $extensionClassesPath . 'Persistence/Exception/InvalidClass.php',
'tx_extbase_persistence_exception_invalidnumberofconstraints' => $extensionClassesPath . 'Persistence/Exception/InvalidNumberOfConstraints.php',
'tx_extbase_persistence_exception_invalidpropertytype' => $extensionClassesPath . 'Persistence/Exception/InvalidPropertyType.php',
'tx_extbase_persistence_exception_missingbackend' => $extensionClassesPath . 'Persistence/Exception/MissingBackend.php',
'tx_extbase_persistence_exception_repositoryexception' => $extensionClassesPath . 'Persistence/Exception/RepositoryException.php',
'tx_extbase_persistence_exception_toodirty' => $extensionClassesPath . 'Persistence/Exception/TooDirty.php',
'tx_extbase_persistence_exception_unexpectedtypeexception' => $extensionClassesPath . 'Persistence/Exception/UnexpectedTypeException.php',
'tx_extbase_persistence_exception_unknownobject' => $extensionClassesPath . 'Persistence/Exception/UnknownObject.php',
'tx_extbase_persistence_exception_unsupportedmethod' => $extensionClassesPath . 'Persistence/Exception/UnsupportedMethod.php',
'tx_extbase_persistence_exception_unsupportedorder' => $extensionClassesPath . 'Persistence/Exception/UnsupportedOrder.php',
'tx_extbase_persistence_exception_unsupportedrelation' => $extensionClassesPath . 'Persistence/Exception/UnsupportedRelation.php',
'tx_extbase_persistence_mapper_columnmap' => $extensionClassesPath . 'Persistence/Mapper/ColumnMap.php',
'tx_extbase_persistence_mapper_datamap' => $extensionClassesPath . 'Persistence/Mapper/DataMap.php',
'tx_extbase_persistence_mapper_datamapfactory' => $extensionClassesPath . 'Persistence/Mapper/DataMapFactory.php',
'tx_extbase_persistence_mapper_datamapper' => $extensionClassesPath . 'Persistence/Mapper/DataMapper.php',
'tx_extbase_persistence_qom_andinterface' => $extensionClassesPath . 'Persistence/QOM/AndInterface.php',
'tx_extbase_persistence_qom_bindvariablevalue' => $extensionClassesPath . 'Persistence/QOM/BindVariableValue.php',
'tx_extbase_persistence_qom_bindvariablevalueinterface' => $extensionClassesPath . 'Persistence/QOM/BindVariableValueInterface.php',
'tx_extbase_persistence_qom_comparison' => $extensionClassesPath . 'Persistence/QOM/Comparison.php',
'tx_extbase_persistence_qom_comparisoninterface' => $extensionClassesPath . 'Persistence/QOM/ComparisonInterface.php',
'tx_extbase_persistence_qom_constraint' => $extensionClassesPath . 'Persistence/QOM/Constraint.php',
'tx_extbase_persistence_qom_constraintinterface' => $extensionClassesPath . 'Persistence/QOM/ConstraintInterface.php',
'tx_extbase_persistence_qom_dynamicoperand' => $extensionClassesPath . 'Persistence/QOM/DynamicOperand.php',
'tx_extbase_persistence_qom_dynamicoperandinterface' => $extensionClassesPath . 'Persistence/QOM/DynamicOperandInterface.php',
'tx_extbase_persistence_qom_equijoincondition' => $extensionClassesPath . 'Persistence/QOM/EquiJoinCondition.php',
'tx_extbase_persistence_qom_equijoinconditioninterface' => $extensionClassesPath . 'Persistence/QOM/EquiJoinConditionInterface.php',
'tx_extbase_persistence_qom_join' => $extensionClassesPath . 'Persistence/QOM/Join.php',
'tx_extbase_persistence_qom_joinconditioninterface' => $extensionClassesPath . 'Persistence/QOM/JoinConditionInterface.php',
'tx_extbase_persistence_qom_joininterface' => $extensionClassesPath . 'Persistence/QOM/JoinInterface.php',
'tx_extbase_persistence_qom_logicaland' => $extensionClassesPath . 'Persistence/QOM/LogicalAnd.php',
'tx_extbase_persistence_qom_logicalnot' => $extensionClassesPath . 'Persistence/QOM/LogicalNot.php',
'tx_extbase_persistence_qom_logicalor' => $extensionClassesPath . 'Persistence/QOM/LogicalOr.php',
'tx_extbase_persistence_qom_lowercase' => $extensionClassesPath . 'Persistence/QOM/LowerCase.php',
'tx_extbase_persistence_qom_lowercaseinterface' => $extensionClassesPath . 'Persistence/QOM/LowerCaseInterface.php',
'tx_extbase_persistence_qom_notinterface' => $extensionClassesPath . 'Persistence/QOM/NotInterface.php',
'tx_extbase_persistence_qom_operand' => $extensionClassesPath . 'Persistence/QOM/Operand.php',
'tx_extbase_persistence_qom_operandinterface' => $extensionClassesPath . 'Persistence/QOM/OperandInterface.php',
'tx_extbase_persistence_qom_orinterface' => $extensionClassesPath . 'Persistence/QOM/OrInterface.php',
'tx_extbase_persistence_qom_ordering' => $extensionClassesPath . 'Persistence/QOM/Ordering.php',
'tx_extbase_persistence_qom_orderinginterface' => $extensionClassesPath . 'Persistence/QOM/OrderingInterface.php',
'tx_extbase_persistence_qom_propertyvalue' => $extensionClassesPath . 'Persistence/QOM/PropertyValue.php',
'tx_extbase_persistence_qom_propertyvalueinterface' => $extensionClassesPath . 'Persistence/QOM/PropertyValueInterface.php',
'tx_extbase_persistence_qom_queryobjectmodelconstantsinterface' => $extensionClassesPath . 'Persistence/QOM/QueryObjectModelConstantsInterface.php',
'tx_extbase_persistence_qom_queryobjectmodelfactory' => $extensionClassesPath . 'Persistence/QOM/QueryObjectModelFactory.php',
'tx_extbase_persistence_qom_queryobjectmodelfactoryinterface' => $extensionClassesPath . 'Persistence/QOM/QueryObjectModelFactoryInterface.php',
'tx_extbase_persistence_qom_selector' => $extensionClassesPath . 'Persistence/QOM/Selector.php',
'tx_extbase_persistence_qom_selectorinterface' => $extensionClassesPath . 'Persistence/QOM/SelectorInterface.php',
'tx_extbase_persistence_qom_sourceinterface' => $extensionClassesPath . 'Persistence/QOM/SourceInterface.php',
'tx_extbase_persistence_qom_statement' => $extensionClassesPath . 'Persistence/QOM/Statement.php',
'tx_extbase_persistence_qom_staticoperand' => $extensionClassesPath . 'Persistence/QOM/StaticOperand.php',
'tx_extbase_persistence_qom_staticoperandinterface' => $extensionClassesPath . 'Persistence/QOM/StaticOperandInterface.php',
'tx_extbase_persistence_qom_uppercase' => $extensionClassesPath . 'Persistence/QOM/UpperCase.php',
'tx_extbase_persistence_qom_uppercaseinterface' => $extensionClassesPath . 'Persistence/QOM/UpperCaseInterface.php',
'tx_extbase_persistence_storage_backendinterface' => $extensionClassesPath . 'Persistence/Storage/BackendInterface.php',
'tx_extbase_persistence_storage_typo3dbbackend' => $extensionClassesPath . 'Persistence/Storage/Typo3DbBackend.php',
'tx_extbase_persistence_storage_exception_badconstraint' => $extensionClassesPath . 'Persistence/Storage/Exception/BadConstraint.php',
'tx_extbase_persistence_storage_exception_sqlerror' => $extensionClassesPath . 'Persistence/Storage/Exception/SqlError.php',
'tx_extbase_property_exception' => $extensionClassesPath . 'Property/Exception.php',
'tx_extbase_property_mapper' => $extensionClassesPath . 'Property/Mapper.php',
'tx_extbase_property_mappingresults' => $extensionClassesPath . 'Property/MappingResults.php',
'tx_extbase_property_propertymapper' => $extensionClassesPath . 'Property/PropertyMapper.php',
'tx_extbase_property_propertymappingconfiguration' => $extensionClassesPath . 'Property/PropertyMappingConfiguration.php',
'tx_extbase_property_propertymappingconfigurationbuilder' => $extensionClassesPath . 'Property/PropertyMappingConfigurationBuilder.php',
'tx_extbase_property_propertymappingconfigurationinterface' => $extensionClassesPath . 'Property/PropertyMappingConfigurationInterface.php',
'tx_extbase_property_typeconverterinterface' => $extensionClassesPath . 'Property/TypeConverterInterface.php',
'tx_extbase_property_exception_duplicateobjectexception' => $extensionClassesPath . 'Property/Exception/DuplicateObjectException.php',
'tx_extbase_property_exception_duplicatetypeconverterexception' => $extensionClassesPath . 'Property/Exception/DuplicateTypeConverterException.php',
'tx_extbase_property_exception_formatnotsupportedexception' => $extensionClassesPath . 'Property/Exception/FormatNotSupportedException.php',
'tx_extbase_property_exception_invaliddatatypeexception' => $extensionClassesPath . 'Property/Exception/InvalidDataTypeException.php',
'tx_extbase_property_exception_invalidformatexception' => $extensionClassesPath . 'Property/Exception/InvalidFormatException.php',
'tx_extbase_property_exception_invalidpropertyexception' => $extensionClassesPath . 'Property/Exception/InvalidPropertyException.php',
'tx_extbase_property_exception_invalidpropertymappingconfigurationexception' => $extensionClassesPath . 'Property/Exception/InvalidPropertyMappingConfigurationException.php',
'tx_extbase_property_exception_invalidsource' => $extensionClassesPath . 'Property/Exception/InvalidSource.php',
'tx_extbase_property_exception_invalidsourceexception' => $extensionClassesPath . 'Property/Exception/InvalidSourceException.php',
'tx_extbase_property_exception_invalidtarget' => $extensionClassesPath . 'Property/Exception/InvalidTarget.php',
'tx_extbase_property_exception_invalidtargetexception' => $extensionClassesPath . 'Property/Exception/InvalidTargetException.php',
'tx_extbase_property_exception_targetnotfoundexception' => $extensionClassesPath . 'Property/Exception/TargetNotFoundException.php',
'tx_extbase_property_exception_typeconverterexception' => $extensionClassesPath . 'Property/Exception/TypeConverterException.php',
'tx_extbase_property_typeconverter_abstracttypeconverter' => $extensionClassesPath . 'Property/TypeConverter/AbstractTypeConverter.php',
'tx_extbase_property_typeconverter_arrayconverter' => $extensionClassesPath . 'Property/TypeConverter/ArrayConverter.php',
'tx_extbase_property_typeconverter_booleanconverter' => $extensionClassesPath . 'Property/TypeConverter/BooleanConverter.php',
'tx_extbase_property_typeconverter_datetimeconverter' => $extensionClassesPath . 'Property/TypeConverter/DateTimeConverter.php',
'tx_extbase_property_typeconverter_floatconverter' => $extensionClassesPath . 'Property/TypeConverter/FloatConverter.php',
'tx_extbase_property_typeconverter_integerconverter' => $extensionClassesPath . 'Property/TypeConverter/IntegerConverter.php',
'tx_extbase_property_typeconverter_objectstorageconverter' => $extensionClassesPath . 'Property/TypeConverter/ObjectStorageConverter.php',
'tx_extbase_property_typeconverter_persistentobjectconverter' => $extensionClassesPath . 'Property/TypeConverter/PersistentObjectConverter.php',
'tx_extbase_property_typeconverter_stringconverter' => $extensionClassesPath . 'Property/TypeConverter/StringConverter.php',
'tx_extbase_reflection_classreflection' => $extensionClassesPath . 'Reflection/ClassReflection.php',
'tx_extbase_reflection_classschema' => $extensionClassesPath . 'Reflection/ClassSchema.php',
'tx_extbase_reflection_doccommentparser' => $extensionClassesPath . 'Reflection/DocCommentParser.php',
'tx_extbase_reflection_exception' => $extensionClassesPath . 'Reflection/Exception.php',
'tx_extbase_reflection_methodreflection' => $extensionClassesPath . 'Reflection/MethodReflection.php',
'tx_extbase_reflection_objectaccess' => $extensionClassesPath . 'Reflection/ObjectAccess.php',
'tx_extbase_reflection_parameterreflection' => $extensionClassesPath . 'Reflection/ParameterReflection.php',
'tx_extbase_reflection_propertyreflection' => $extensionClassesPath . 'Reflection/PropertyReflection.php',
'tx_extbase_reflection_service' => $extensionClassesPath . 'Reflection/Service.php',
'tx_extbase_reflection_exception_invalidpropertytype' => $extensionClassesPath . 'Reflection/Exception/InvalidPropertyType.php',
'tx_extbase_reflection_exception_propertynotaccessibleexception' => $extensionClassesPath . 'Reflection/Exception/PropertyNotAccessibleException.php',
'tx_extbase_reflection_exception_unknownclass' => $extensionClassesPath . 'Reflection/Exception/UnknownClass.php',
'tx_extbase_security_exception' => $extensionClassesPath . 'Security/Exception.php',
'tx_extbase_security_channel_requesthashservice' => $extensionClassesPath . 'Security/Channel/RequestHashService.php',
'tx_extbase_security_cryptography_hashservice' => $extensionClassesPath . 'Security/Cryptography/HashService.php',
'tx_extbase_security_exception_invalidargumentforhashgeneration' => $extensionClassesPath . 'Security/Exception/InvalidArgumentForHashGeneration.php',
'tx_extbase_security_exception_invalidargumentforrequesthashgeneration' => $extensionClassesPath . 'Security/Exception/InvalidArgumentForRequestHashGeneration.php',
'tx_extbase_security_exception_syntacticallywrongrequesthash' => $extensionClassesPath . 'Security/Exception/SyntacticallyWrongRequestHash.php',
'tx_extbase_service_cacheservice' => $extensionClassesPath . 'Service/CacheService.php',
'tx_extbase_service_extensionservice' => $extensionClassesPath . 'Service/ExtensionService.php',
'tx_extbase_service_flexformservice' => $extensionClassesPath . 'Service/FlexFormService.php',
'tx_extbase_service_typoscriptservice' => $extensionClassesPath . 'Service/TypoScriptService.php',
'tx_extbase_service_typehandlingservice' => $extensionClassesPath . 'Service/TypeHandlingService.php',
'tx_extbase_signalslot_dispatcher' => $extensionClassesPath . 'SignalSlot/Dispatcher.php',
'tx_extbase_signalslot_exception_invalidslotexception' => $extensionClassesPath . 'SignalSlot/Exception/InvalidSlotException.php',
'tx_extbase_utility_arrays' => $extensionClassesPath . 'Utility/Arrays.php',
'tx_extbase_utility_cache' => $extensionClassesPath . 'Utility/Cache.php',
'tx_extbase_utility_debugger' => $extensionClassesPath . 'Utility/Debugger.php',
'tx_extbase_utility_classloader' => $extensionClassesPath . 'Utility/ClassLoader.php',
'tx_extbase_utility_extbaserequirementscheck' => $extensionClassesPath . 'Utility/ExtbaseRequirementsCheck.php',
'tx_extbase_utility_extension' => $extensionClassesPath . 'Utility/Extension.php',
'tx_extbase_utility_frontendsimulator' => $extensionClassesPath . 'Utility/FrontendSimulator.php',
'tx_extbase_utility_localization' => $extensionClassesPath . 'Utility/Localization.php',
'tx_extbase_utility_typehandling' => $extensionClassesPath . 'Utility/TypeHandling.php',
'tx_extbase_utility_typoscript' => $extensionClassesPath . 'Utility/TypoScript.php',
'tx_extbase_validation_error' => $extensionClassesPath . 'Validation/Error.php',
'tx_extbase_validation_exception' => $extensionClassesPath . 'Validation/Exception.php',
'tx_extbase_validation_propertyerror' => $extensionClassesPath . 'Validation/PropertyError.php',
'tx_extbase_validation_validatorresolver' => $extensionClassesPath . 'Validation/ValidatorResolver.php',
'tx_extbase_validation_exception_invalidsubject' => $extensionClassesPath . 'Validation/Exception/InvalidSubject.php',
'tx_extbase_validation_exception_invalidvalidationconfiguration' => $extensionClassesPath . 'Validation/Exception/InvalidValidationConfiguration.php',
'tx_extbase_validation_exception_invalidvalidationoptions' => $extensionClassesPath . 'Validation/Exception/InvalidValidationOptions.php',
'tx_extbase_validation_exception_nosuchvalidator' => $extensionClassesPath . 'Validation/Exception/NoSuchValidator.php',
'tx_extbase_validation_exception_novalidatorfound' => $extensionClassesPath . 'Validation/Exception/NoValidatorFound.php',
'tx_extbase_validation_validator_abstractcompositevalidator' => $extensionClassesPath . 'Validation/Validator/AbstractCompositeValidator.php',
'tx_extbase_validation_validator_abstractobjectvalidator' => $extensionClassesPath . 'Validation/Validator/AbstractObjectValidator.php',
'tx_extbase_validation_validator_abstractvalidator' => $extensionClassesPath . 'Validation/Validator/AbstractValidator.php',
'tx_extbase_validation_validator_alphanumericvalidator' => $extensionClassesPath . 'Validation/Validator/AlphanumericValidator.php',
'tx_extbase_validation_validator_conjunctionvalidator' => $extensionClassesPath . 'Validation/Validator/ConjunctionValidator.php',
'tx_extbase_validation_validator_datetimevalidator' => $extensionClassesPath . 'Validation/Validator/DateTimeValidator.php',
'tx_extbase_validation_validator_disjunctionvalidator' => $extensionClassesPath . 'Validation/Validator/DisjunctionValidator.php',
'tx_extbase_validation_validator_emailaddressvalidator' => $extensionClassesPath . 'Validation/Validator/EmailAddressValidator.php',
'tx_extbase_validation_validator_floatvalidator' => $extensionClassesPath . 'Validation/Validator/FloatValidator.php',
'tx_extbase_validation_validator_genericobjectvalidator' => $extensionClassesPath . 'Validation/Validator/GenericObjectValidator.php',
'tx_extbase_validation_validator_integervalidator' => $extensionClassesPath . 'Validation/Validator/IntegerValidator.php',
'tx_extbase_validation_validator_notemptyvalidator' => $extensionClassesPath . 'Validation/Validator/NotEmptyValidator.php',
'tx_extbase_validation_validator_numberrangevalidator' => $extensionClassesPath . 'Validation/Validator/NumberRangeValidator.php',
'tx_extbase_validation_validator_numbervalidator' => $extensionClassesPath . 'Validation/Validator/NumberValidator.php',
'tx_extbase_validation_validator_objectvalidatorinterface' => $extensionClassesPath . 'Validation/Validator/ObjectValidatorInterface.php',
'tx_extbase_validation_validator_rawvalidator' => $extensionClassesPath . 'Validation/Validator/RawValidator.php',
'tx_extbase_validation_validator_regularexpressionvalidator' => $extensionClassesPath . 'Validation/Validator/RegularExpressionValidator.php',
'tx_extbase_validation_validator_stringlengthvalidator' => $extensionClassesPath . 'Validation/Validator/StringLengthValidator.php',
'tx_extbase_validation_validator_stringvalidator' => $extensionClassesPath . 'Validation/Validator/StringValidator.php',
'tx_extbase_validation_validator_textvalidator' => $extensionClassesPath . 'Validation/Validator/TextValidator.php',
'tx_extbase_validation_validator_validatorinterface' => $extensionClassesPath . 'Validation/Validator/ValidatorInterface.php',
'tx_extbase_basetestcase' => $extensionClassesPath . '../Tests/BaseTestCase.php',
'tx_extbase_tests_unit_basetestcase' => $extensionClassesPath . '../Tests/Unit/BaseTestCase.php',
);
?>