-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin_classmap.php
4636 lines (4634 loc) · 307 KB
/
plugin_classmap.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// plugin class map
// auto-generated using pluginmap_generator.php, 2014-03-27 10:04:12
return array (
'categories' => 'Application\\Entity\\Categories',
'blogpostimages' => 'Application\\Entity\\BlogPostImages',
'assetfiltermanagerawareinterface' => 'AssetManager\\Service\\AssetFilterManagerAwareInterface',
'mapresolverservicefactory' => 'AssetManager\\Service\\MapResolverServiceFactory',
'assetfiltermanager' => 'AssetManager\\Service\\AssetFilterManager',
'aggregateresolverservicefactory' => 'AssetManager\\Service\\AggregateResolverServiceFactory',
'assetcachemanagerservicefactory' => 'AssetManager\\Service\\AssetCacheManagerServiceFactory',
'pathstackresolverservicefactory' => 'AssetManager\\Service\\PathStackResolverServiceFactory',
'assetmanager' => 'Assetic\\AssetManager',
'assetmanagerservicefactory' => 'AssetManager\\Service\\AssetManagerServiceFactory',
'prioritizedpathsresolverservicefactory' => 'AssetManager\\Service\\PrioritizedPathsResolverServiceFactory',
'collectionresolverservicefactory' => 'AssetManager\\Service\\CollectionResolverServiceFactory',
'mimeresolver' => 'AssetManager\\Service\\MimeResolver',
'assetcachemanager' => 'AssetManager\\Service\\AssetCacheManager',
'assetfiltermanagerservicefactory' => 'AssetManager\\Service\\AssetFilterManagerServiceFactory',
'assetcachemanagerawareinterface' => 'AssetManager\\Service\\AssetCacheManagerAwareInterface',
'aggregateresolver' => 'Zend\\View\\Resolver\\AggregateResolver',
'mapresolver' => 'AssetManager\\Resolver\\MapResolver',
'collectionresolver' => 'AssetManager\\Resolver\\CollectionResolver',
'prioritizedpathsresolver' => 'AssetManager\\Resolver\\PrioritizedPathsResolver',
'mimeresolverawareinterface' => 'AssetManager\\Resolver\\MimeResolverAwareInterface',
'aggregateresolverawareinterface' => 'AssetManager\\Resolver\\AggregateResolverAwareInterface',
'pathstackresolver' => 'AssetManager\\Resolver\\PathStackResolver',
'resolverinterface' => 'Zend\\Authentication\\Adapter\\Http\\ResolverInterface',
'filepathcache' => 'AssetManager\\Cache\\FilePathCache',
'exceptioninterface' => 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface',
'invalidargumentexception' => 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException',
'runtimeexception' => 'Mockery\\Exception\\RuntimeException',
'module' => 'Application\\Module',
'assetmanagerservicefactorytest' => 'AssetManagerTest\\Service\\AssetManagerServiceFactoryTest',
'assetfiltermanagerservicefactorytest' => 'AssetManagerTest\\Service\\AssetFilterManagerServiceFactoryTest',
'mapresolverservicefactorytest' => 'AssetManagerTest\\Service\\MapResolverServiceFactoryTest',
'pathstackresolverservicefactorytest' => 'AssetManagerTest\\Service\\PathStackResolverServiceFactoryTest',
'prioritizedpathsresolverservicefactorytest' => 'AssetManagerTest\\Service\\PrioritizedPathsResolverServiceFactoryTest',
'assetfiltermanagertest' => 'AssetManagerTest\\Service\\AssetFilterManagerTest',
'assetmanagertest' => 'AssetManagerTest\\Service\\AssetManagerTest',
'assetcachemanagerservicefactorytest' => 'AssetManagerTest\\Service\\AssetCacheManagerServiceFactoryTest',
'collectionresolverservicefactorytest' => 'AssetManagerTest\\Service\\CollectionResolverServiceFactoryTest',
'mimeresolvertest' => 'AssetManager\\Service\\MimeResolverTest',
'aggregateresolverservicefactorytest' => 'AssetManagerTest\\Service\\AggregateResolverServiceFactoryTest',
'mapiterable' => 'AssetManagerTest\\Service\\MapIterable',
'mapresolvertest' => 'MapResolverTest',
'prioritizedpathsresolvertest' => 'AssetManagerTest\\Service\\PrioritizedPathsResolverTest',
'pathstackresolvertest' => 'AssetManagerTest\\Service\\PathStackResolverTest',
'aggregateresolvertest' => 'ZendTest\\View\\Resolver\\AggregateResolverTest',
'collectionsiterable' => 'AssetManagerTest\\Service\\CollectionsIterable',
'collectionsresolvertest' => 'CollectionsResolverTest',
'moduletest' => 'AssetsBundleTest\\ModuleTest',
'filepathcachetest' => 'AssetManager\\Cache\\FilePathCacheTest',
'brokenfilter' => 'BrokenFilter',
'interfacetestresolver' => 'InterfaceTestResolver',
'customfilter' => 'CustomFilter',
'inflector' => 'Zend\\Filter\\Inflector',
'inflectortest' => 'ZendTest\\Filter\\InflectorTest',
'doctrinetestcase' => 'Doctrine\\Tests\\DoctrineTestCase',
'entity' => 'ZendTest\\Form\\TestAsset\\Annotation\\Entity',
'classmetadatainfo' => 'Doctrine\\ORM\\Mapping\\ClassMetadataInfo',
'underscorenamingstrategy' => 'Zend\\Stdlib\\Hydrator\\NamingStrategy\\UnderscoreNamingStrategy',
'joincolumns' => 'Doctrine\\ORM\\Mapping\\JoinColumns',
'namingstrategy' => 'Doctrine\\ORM\\Mapping\\NamingStrategy',
'attributeoverrides' => 'Doctrine\\ORM\\Mapping\\AttributeOverrides',
'table' => 'Zend\\Text\\Table\\Table',
'version' => 'Zend\\Feed\\Writer\\Version',
'sequencegenerator' => 'Doctrine\\ORM\\Id\\SequenceGenerator',
'inheritancetype' => 'Doctrine\\ORM\\Mapping\\InheritanceType',
'mappedsuperclass' => 'Doctrine\\ORM\\Mapping\\MappedSuperclass',
'namedqueries' => 'Doctrine\\ORM\\Mapping\\NamedQueries',
'entityresult' => 'Doctrine\\ORM\\Mapping\\EntityResult',
'fieldresult' => 'Doctrine\\ORM\\Mapping\\FieldResult',
'changetrackingpolicy' => 'Doctrine\\ORM\\Mapping\\ChangeTrackingPolicy',
'namednativequery' => 'Doctrine\\ORM\\Mapping\\NamedNativeQuery',
'generatedvalue' => 'Doctrine\\ORM\\Mapping\\GeneratedValue',
'defaultentitylistenerresolver' => 'Doctrine\\ORM\\Mapping\\DefaultEntityListenerResolver',
'ansiquotestrategy' => 'Doctrine\\ORM\\Mapping\\AnsiQuoteStrategy',
'index' => 'Doctrine\\DBAL\\Schema\\Index',
'columnresult' => 'Doctrine\\ORM\\Mapping\\ColumnResult',
'sqlresultsetmapping' => 'Doctrine\\ORM\\Mapping\\SqlResultSetMapping',
'preremove' => 'Doctrine\\ORM\\Mapping\\PreRemove',
'associationoverrides' => 'Doctrine\\ORM\\Mapping\\AssociationOverrides',
'uniqueconstraint' => 'Doctrine\\ORM\\Mapping\\UniqueConstraint',
'namednativequeries' => 'Doctrine\\ORM\\Mapping\\NamedNativeQueries',
'manytoone' => 'Doctrine\\ORM\\Mapping\\ManyToOne',
'joincolumn' => 'Doctrine\\ORM\\Mapping\\JoinColumn',
'prepersist' => 'Doctrine\\ORM\\Mapping\\PrePersist',
'attributeoverride' => 'Doctrine\\ORM\\Mapping\\AttributeOverride',
'postremove' => 'Doctrine\\ORM\\Mapping\\PostRemove',
'defaultquotestrategy' => 'Doctrine\\ORM\\Mapping\\DefaultQuoteStrategy',
'classmetadata' => 'Doctrine\\Common\\Persistence\\Mapping\\ClassMetadata',
'preflush' => 'Doctrine\\ORM\\Mapping\\PreFlush',
'entitylistenerresolver' => 'Doctrine\\ORM\\Mapping\\EntityListenerResolver',
'postpersist' => 'Doctrine\\ORM\\Mapping\\PostPersist',
'id' => 'Doctrine\\ORM\\Mapping\\Id',
'classmetadatafactory' => 'Doctrine\\Common\\Persistence\\Mapping\\ClassMetadataFactory',
'customidgenerator' => 'Doctrine\\ORM\\Mapping\\CustomIdGenerator',
'quotestrategy' => 'Doctrine\\ORM\\Mapping\\QuoteStrategy',
'namedquery' => 'Doctrine\\ORM\\Mapping\\NamedQuery',
'haslifecyclecallbacks' => 'Doctrine\\ORM\\Mapping\\HasLifecycleCallbacks',
'sqlresultsetmappings' => 'Doctrine\\ORM\\Mapping\\SqlResultSetMappings',
'onetoone' => 'Doctrine\\ORM\\Mapping\\OneToOne',
'manytomany' => 'Doctrine\\ORM\\Mapping\\ManyToMany',
'preupdate' => 'Doctrine\\ORM\\Mapping\\PreUpdate',
'mappingexception' => 'Doctrine\\Common\\Persistence\\Mapping\\MappingException',
'associationoverride' => 'Doctrine\\ORM\\Mapping\\AssociationOverride',
'discriminatorcolumn' => 'Doctrine\\ORM\\Mapping\\DiscriminatorColumn',
'postupdate' => 'Doctrine\\ORM\\Mapping\\PostUpdate',
'jointable' => 'Doctrine\\ORM\\Mapping\\JoinTable',
'classmetadatabuilder' => 'Doctrine\\ORM\\Mapping\\Builder\\ClassMetadataBuilder',
'manytomanyassociationbuilder' => 'Doctrine\\ORM\\Mapping\\Builder\\ManyToManyAssociationBuilder',
'fieldbuilder' => 'Doctrine\\ORM\\Mapping\\Builder\\FieldBuilder',
'entitylistenerbuilder' => 'Doctrine\\ORM\\Mapping\\Builder\\EntityListenerBuilder',
'associationbuilder' => 'Doctrine\\ORM\\Mapping\\Builder\\AssociationBuilder',
'onetomanyassociationbuilder' => 'Doctrine\\ORM\\Mapping\\Builder\\OneToManyAssociationBuilder',
'postload' => 'Doctrine\\ORM\\Mapping\\PostLoad',
'elementcollection' => 'Doctrine\\ORM\\Mapping\\ElementCollection',
'annotation' => 'Doctrine\\Common\\Annotations\\Annotation',
'defaultnamingstrategy' => 'Doctrine\\ORM\\Mapping\\DefaultNamingStrategy',
'simplifiedyamldriver' => 'Doctrine\\ORM\\Mapping\\Driver\\SimplifiedYamlDriver',
'driverchain' => 'Doctrine\\ORM\\Mapping\\Driver\\DriverChain',
'simplifiedxmldriver' => 'Doctrine\\ORM\\Mapping\\Driver\\SimplifiedXmlDriver',
'staticphpdriver' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\StaticPHPDriver',
'databasedriver' => 'Doctrine\\ORM\\Mapping\\Driver\\DatabaseDriver',
'xmldriver' => 'Doctrine\\ORM\\Mapping\\Driver\\XmlDriver',
'phpdriver' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\PHPDriver',
'annotationdriver' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\AnnotationDriver',
'yamldriver' => 'Doctrine\\ORM\\Mapping\\Driver\\YamlDriver',
'entitylisteners' => 'Doctrine\\ORM\\Mapping\\EntityListeners',
'column' => 'Zend\\Db\\Sql\\Ddl\\Column\\Column',
'discriminatormap' => 'Doctrine\\ORM\\Mapping\\DiscriminatorMap',
'orderby' => 'Doctrine\\ORM\\Query\\Expr\\OrderBy',
'onetomany' => 'Doctrine\\ORM\\Mapping\\OneToMany',
'orminvalidargumentexception' => 'Doctrine\\ORM\\ORMInvalidArgumentException',
'arrayhydrator' => 'Doctrine\\ORM\\Internal\\Hydration\\ArrayHydrator',
'iterableresult' => 'Doctrine\\ORM\\Internal\\Hydration\\IterableResult',
'objecthydrator' => 'Doctrine\\ORM\\Internal\\Hydration\\ObjectHydrator',
'hydrationexception' => 'Doctrine\\ORM\\Internal\\Hydration\\HydrationException',
'singlescalarhydrator' => 'Doctrine\\ORM\\Internal\\Hydration\\SingleScalarHydrator',
'abstracthydrator' => 'Zend\\Stdlib\\Hydrator\\AbstractHydrator',
'scalarhydrator' => 'Doctrine\\ORM\\Internal\\Hydration\\ScalarHydrator',
'simpleobjecthydrator' => 'Doctrine\\ORM\\Internal\\Hydration\\SimpleObjectHydrator',
'commitordercalculator' => 'Doctrine\\ORM\\Internal\\CommitOrderCalculator',
'entitynotfoundexception' => 'Doctrine\\ORM\\EntityNotFoundException',
'tablegenerator' => 'Doctrine\\DBAL\\Id\\TableGenerator',
'abstractidgenerator' => 'Doctrine\\ORM\\Id\\AbstractIdGenerator',
'identitygenerator' => 'Doctrine\\ORM\\Id\\IdentityGenerator',
'assignedgenerator' => 'Doctrine\\ORM\\Id\\AssignedGenerator',
'bigintegeridentitygenerator' => 'Doctrine\\ORM\\Id\\BigIntegerIdentityGenerator',
'uuidgenerator' => 'Doctrine\\ORM\\Id\\UuidGenerator',
'repositoryfactory' => 'Doctrine\\ORM\\Repository\\RepositoryFactory',
'defaultrepositoryfactory' => 'Doctrine\\ORM\\Repository\\DefaultRepositoryFactory',
'ormexception' => 'Doctrine\\ORM\\ORMException',
'sqlwalker' => 'Doctrine\\ORM\\Query\\SqlWalker',
'filtercollection' => 'Assetic\\Filter\\FilterCollection',
'treewalkeradapter' => 'Doctrine\\ORM\\Query\\TreeWalkerAdapter',
'queryexception' => 'Doctrine\\DBAL\\Query\\QueryException',
'parametertypeinferer' => 'Doctrine\\ORM\\Query\\ParameterTypeInferer',
'sqlfilter' => 'Doctrine\\ORM\\Query\\Filter\\SQLFilter',
'resultsetmapping' => 'Doctrine\\ORM\\Query\\ResultSetMapping',
'resultsetmappingbuilder' => 'Doctrine\\ORM\\Query\\ResultSetMappingBuilder',
'coalesceexpression' => 'Doctrine\\ORM\\Query\\AST\\CoalesceExpression',
'collectionmemberexpression' => 'Doctrine\\ORM\\Query\\AST\\CollectionMemberExpression',
'arithmeticfactor' => 'Doctrine\\ORM\\Query\\AST\\ArithmeticFactor',
'currenttimestampfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\CurrentTimestampFunction',
'substringfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\SubstringFunction',
'functionnode' => 'Doctrine\\ORM\\Query\\AST\\Functions\\FunctionNode',
'lengthfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\LengthFunction',
'sqrtfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\SqrtFunction',
'datesubfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\DateSubFunction',
'datedifffunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\DateDiffFunction',
'lowerfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\LowerFunction',
'currenttimefunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\CurrentTimeFunction',
'concatfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\ConcatFunction',
'upperfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\UpperFunction',
'bitandfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\BitAndFunction',
'trimfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\TrimFunction',
'identityfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\IdentityFunction',
'absfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\AbsFunction',
'modfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\ModFunction',
'sizefunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\SizeFunction',
'bitorfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\BitOrFunction',
'dateaddfunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\DateAddFunction',
'currentdatefunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\CurrentDateFunction',
'locatefunction' => 'Doctrine\\ORM\\Query\\AST\\Functions\\LocateFunction',
'existsexpression' => 'Doctrine\\ORM\\Query\\AST\\ExistsExpression',
'conditionalexpression' => 'Doctrine\\ORM\\Query\\AST\\ConditionalExpression',
'whenclause' => 'Doctrine\\ORM\\Query\\AST\\WhenClause',
'groupbyclause' => 'Doctrine\\ORM\\Query\\AST\\GroupByClause',
'subselect' => 'Doctrine\\ORM\\Query\\AST\\Subselect',
'updateitem' => 'Doctrine\\ORM\\Query\\AST\\UpdateItem',
'quantifiedexpression' => 'Doctrine\\ORM\\Query\\AST\\QuantifiedExpression',
'aggregateexpression' => 'Doctrine\\ORM\\Query\\AST\\AggregateExpression',
'rangevariabledeclaration' => 'Doctrine\\ORM\\Query\\AST\\RangeVariableDeclaration',
'joinassociationdeclaration' => 'Doctrine\\ORM\\Query\\AST\\JoinAssociationDeclaration',
'instanceofexpression' => 'Doctrine\\ORM\\Query\\AST\\InstanceOfExpression',
'havingclause' => 'Doctrine\\ORM\\Query\\AST\\HavingClause',
'deleteclause' => 'Doctrine\\ORM\\Query\\AST\\DeleteClause',
'fromclause' => 'Doctrine\\ORM\\Query\\AST\\FromClause',
'nullcomparisonexpression' => 'Doctrine\\ORM\\Query\\AST\\NullComparisonExpression',
'newobjectexpression' => 'Doctrine\\ORM\\Query\\AST\\NewObjectExpression',
'deletestatement' => 'Doctrine\\ORM\\Query\\AST\\DeleteStatement',
'conditionalfactor' => 'Doctrine\\ORM\\Query\\AST\\ConditionalFactor',
'selectexpression' => 'Doctrine\\ORM\\Query\\AST\\SelectExpression',
'generalcaseexpression' => 'Doctrine\\ORM\\Query\\AST\\GeneralCaseExpression',
'inputparameter' => 'Doctrine\\ORM\\Query\\AST\\InputParameter',
'arithmeticexpression' => 'Doctrine\\ORM\\Query\\AST\\ArithmeticExpression',
'partialobjectexpression' => 'Doctrine\\ORM\\Query\\AST\\PartialObjectExpression',
'likeexpression' => 'Doctrine\\ORM\\Query\\AST\\LikeExpression',
'simplearithmeticexpression' => 'Doctrine\\ORM\\Query\\AST\\SimpleArithmeticExpression',
'identificationvariabledeclaration' => 'Doctrine\\ORM\\Query\\AST\\IdentificationVariableDeclaration',
'simplewhenclause' => 'Doctrine\\ORM\\Query\\AST\\SimpleWhenClause',
'join' => 'Doctrine\\ORM\\Query\\Expr\\Join',
'emptycollectioncomparisonexpression' => 'Doctrine\\ORM\\Query\\AST\\EmptyCollectionComparisonExpression',
'selectclause' => 'Doctrine\\ORM\\Query\\AST\\SelectClause',
'astexception' => 'Doctrine\\ORM\\Query\\AST\\ASTException',
'selectstatement' => 'Doctrine\\ORM\\Query\\AST\\SelectStatement',
'orderbyclause' => 'Doctrine\\ORM\\Query\\AST\\OrderByClause',
'betweenexpression' => 'Doctrine\\ORM\\Query\\AST\\BetweenExpression',
'whereclause' => 'Doctrine\\ORM\\Query\\AST\\WhereClause',
'literal' => 'Zend\\Db\\Sql\\Literal',
'arithmeticterm' => 'Doctrine\\ORM\\Query\\AST\\ArithmeticTerm',
'node' => 'Zend\\Server\\Reflection\\Node',
'conditionalprimary' => 'Doctrine\\ORM\\Query\\AST\\ConditionalPrimary',
'comparisonexpression' => 'Doctrine\\ORM\\Query\\AST\\ComparisonExpression',
'orderbyitem' => 'Doctrine\\ORM\\Query\\AST\\OrderByItem',
'inexpression' => 'Doctrine\\ORM\\Query\\AST\\InExpression',
'parenthesisexpression' => 'Doctrine\\ORM\\Query\\AST\\ParenthesisExpression',
'simpleselectexpression' => 'Doctrine\\ORM\\Query\\AST\\SimpleSelectExpression',
'joinclasspathexpression' => 'Doctrine\\ORM\\Query\\AST\\JoinClassPathExpression',
'conditionalterm' => 'Doctrine\\ORM\\Query\\AST\\ConditionalTerm',
'nullifexpression' => 'Doctrine\\ORM\\Query\\AST\\NullIfExpression',
'simplecaseexpression' => 'Doctrine\\ORM\\Query\\AST\\SimpleCaseExpression',
'subselectfromclause' => 'Doctrine\\ORM\\Query\\AST\\SubselectFromClause',
'updateclause' => 'Doctrine\\ORM\\Query\\AST\\UpdateClause',
'indexby' => 'Doctrine\\ORM\\Query\\AST\\IndexBy',
'pathexpression' => 'Doctrine\\ORM\\Query\\AST\\PathExpression',
'joinassociationpathexpression' => 'Doctrine\\ORM\\Query\\AST\\JoinAssociationPathExpression',
'simpleselectclause' => 'Doctrine\\ORM\\Query\\AST\\SimpleSelectClause',
'updatestatement' => 'Doctrine\\ORM\\Query\\AST\\UpdateStatement',
'lexer' => 'Doctrine\\Common\\Lexer',
'printer' => 'Doctrine\\ORM\\Query\\Printer',
'abstractsqlexecutor' => 'Doctrine\\ORM\\Query\\Exec\\AbstractSqlExecutor',
'multitableupdateexecutor' => 'Doctrine\\ORM\\Query\\Exec\\MultiTableUpdateExecutor',
'multitabledeleteexecutor' => 'Doctrine\\ORM\\Query\\Exec\\MultiTableDeleteExecutor',
'singletabledeleteupdateexecutor' => 'Doctrine\\ORM\\Query\\Exec\\SingleTableDeleteUpdateExecutor',
'singleselectexecutor' => 'Doctrine\\ORM\\Query\\Exec\\SingleSelectExecutor',
'parser' => 'Symfony\\Component\\Yaml\\Parser',
'math' => 'Doctrine\\ORM\\Query\\Expr\\Math',
'func' => 'Doctrine\\ORM\\Query\\Expr\\Func',
'comparison' => 'Doctrine\\Common\\Collections\\Expr\\Comparison',
'orx' => 'Doctrine\\ORM\\Query\\Expr\\Orx',
'from' => 'Zend\\Http\\Header\\From',
'select' => 'Zend\\Console\\Prompt\\Select',
'andx' => 'Doctrine\\ORM\\Query\\Expr\\Andx',
'composite' => 'Zend\\Soap\\Wsdl\\ComplexTypeStrategy\\Composite',
'groupby' => 'Doctrine\\ORM\\Query\\Expr\\GroupBy',
'base' => 'Zend\\Log\\Formatter\\Base',
'expr' => 'Zend\\Json\\Expr',
'treewalker' => 'Doctrine\\ORM\\Query\\TreeWalker',
'treewalkerchain' => 'Doctrine\\ORM\\Query\\TreeWalkerChain',
'queryexpressionvisitor' => 'Doctrine\\ORM\\Query\\QueryExpressionVisitor',
'parserresult' => 'Doctrine\\ORM\\Query\\ParserResult',
'parameter' => 'Mockery\\Generator\\Parameter',
'abstractquery' => 'Doctrine\\ORM\\AbstractQuery',
'entitymanagerinterface' => 'Doctrine\\ORM\\EntityManagerInterface',
'noresultexception' => 'Doctrine\\ORM\\NoResultException',
'transactionrequiredexception' => 'Doctrine\\ORM\\TransactionRequiredException',
'joinedsubclasspersister' => 'Doctrine\\ORM\\Persisters\\JoinedSubclassPersister',
'sqlexpressionvisitor' => 'Doctrine\\ORM\\Persisters\\SqlExpressionVisitor',
'basicentitypersister' => 'Doctrine\\ORM\\Persisters\\BasicEntityPersister',
'elementcollectionpersister' => 'Doctrine\\ORM\\Persisters\\ElementCollectionPersister',
'onetomanypersister' => 'Doctrine\\ORM\\Persisters\\OneToManyPersister',
'singletablepersister' => 'Doctrine\\ORM\\Persisters\\SingleTablePersister',
'unionsubclasspersister' => 'Doctrine\\ORM\\Persisters\\UnionSubclassPersister',
'manytomanypersister' => 'Doctrine\\ORM\\Persisters\\ManyToManyPersister',
'persisterexception' => 'Doctrine\\ORM\\Persisters\\PersisterException',
'abstractcollectionpersister' => 'Doctrine\\ORM\\Persisters\\AbstractCollectionPersister',
'sqlvaluevisitor' => 'Doctrine\\ORM\\Persisters\\SqlValueVisitor',
'abstractentityinheritancepersister' => 'Doctrine\\ORM\\Persisters\\AbstractEntityInheritancePersister',
'unexpectedresultexception' => 'Doctrine\\ORM\\UnexpectedResultException',
'querybuilder' => 'Doctrine\\DBAL\\Query\\QueryBuilder',
'proxy' => 'Zend\\Http\\Client\\Adapter\\Proxy',
'autoloader' => 'Doctrine\\Common\\Proxy\\Autoloader',
'proxyfactory' => 'Doctrine\\ORM\\Proxy\\ProxyFactory',
'nonuniqueresultexception' => 'Doctrine\\ORM\\NonUniqueResultException',
'limitsubqueryoutputwalker' => 'Doctrine\\ORM\\Tools\\Pagination\\LimitSubqueryOutputWalker',
'countoutputwalker' => 'Doctrine\\ORM\\Tools\\Pagination\\CountOutputWalker',
'paginator' => 'Zend\\Paginator\\Paginator',
'whereinwalker' => 'Doctrine\\ORM\\Tools\\Pagination\\WhereInWalker',
'limitsubquerywalker' => 'Doctrine\\ORM\\Tools\\Pagination\\LimitSubqueryWalker',
'countwalker' => 'Doctrine\\ORM\\Tools\\Pagination\\CountWalker',
'debugunitofworklistener' => 'Doctrine\\ORM\\Tools\\DebugUnitOfWorkListener',
'entitygenerator' => 'Doctrine\\ORM\\Tools\\EntityGenerator',
'exportexception' => 'Doctrine\\ORM\\Tools\\Export\\ExportException',
'classmetadataexporter' => 'Doctrine\\ORM\\Tools\\Export\\ClassMetadataExporter',
'yamlexporter' => 'Doctrine\\ORM\\Tools\\Export\\Driver\\YamlExporter',
'annotationexporter' => 'Doctrine\\ORM\\Tools\\Export\\Driver\\AnnotationExporter',
'xmlexporter' => 'Doctrine\\ORM\\Tools\\Export\\Driver\\XmlExporter',
'abstractexporter' => 'Doctrine\\ORM\\Tools\\Export\\Driver\\AbstractExporter',
'phpexporter' => 'Doctrine\\ORM\\Tools\\Export\\Driver\\PhpExporter',
'resolvetargetentitylistener' => 'Doctrine\\ORM\\Tools\\ResolveTargetEntityListener',
'entityrepositorygenerator' => 'Doctrine\\ORM\\Tools\\EntityRepositoryGenerator',
'disconnectedclassmetadatafactory' => 'Doctrine\\ORM\\Tools\\DisconnectedClassMetadataFactory',
'metadatafilter' => 'Doctrine\\ORM\\Tools\\Console\\MetadataFilter',
'entitymanagerhelper' => 'Doctrine\\ORM\\Tools\\Console\\Helper\\EntityManagerHelper',
'consolerunner' => 'Doctrine\\ORM\\Tools\\Console\\ConsoleRunner',
'validateschemacommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\ValidateSchemaCommand',
'convertmappingcommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\ConvertMappingCommand',
'createcommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\SchemaTool\\CreateCommand',
'abstractcommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\AbstractCommand',
'updatecommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\SchemaTool\\UpdateCommand',
'dropcommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\SchemaTool\\DropCommand',
'querycommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\QueryCommand',
'resultcommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\ResultCommand',
'metadatacommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\ClearCache\\MetadataCommand',
'ensureproductionsettingscommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\EnsureProductionSettingsCommand',
'generateentitiescommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\GenerateEntitiesCommand',
'convertdoctrine1schemacommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\ConvertDoctrine1SchemaCommand',
'rundqlcommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\RunDqlCommand',
'infocommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\InfoCommand',
'generaterepositoriescommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\GenerateRepositoriesCommand',
'generateproxiescommand' => 'Doctrine\\ORM\\Tools\\Console\\Command\\GenerateProxiesCommand',
'toolsexception' => 'Doctrine\\ORM\\Tools\\ToolsException',
'setup' => 'Doctrine\\ORM\\Tools\\Setup',
'schematool' => 'Doctrine\\ORM\\Tools\\SchemaTool',
'schemavalidator' => 'Doctrine\\ORM\\Tools\\SchemaValidator',
'toolevents' => 'Doctrine\\ORM\\Tools\\ToolEvents',
'convertdoctrine1schema' => 'Doctrine\\ORM\\Tools\\ConvertDoctrine1Schema',
'generateschematableeventargs' => 'Doctrine\\ORM\\Tools\\Event\\GenerateSchemaTableEventArgs',
'generateschemaeventargs' => 'Doctrine\\ORM\\Tools\\Event\\GenerateSchemaEventArgs',
'configuration' => 'Mockery\\Configuration',
'persistentcollection' => 'Doctrine\\ORM\\PersistentCollection',
'query' => 'Zend\\Dom\\Query',
'pessimisticlockexception' => 'Doctrine\\ORM\\PessimisticLockException',
'entityrepository' => 'Doctrine\\ORM\\EntityRepository',
'events' => 'Doctrine\\DBAL\\Events',
'entitymanager' => 'DoctrineORMModule\\Options\\EntityManager',
'entitymanagerdecorator' => 'Doctrine\\ORM\\Decorator\\EntityManagerDecorator',
'optimisticlockexception' => 'Doctrine\\ORM\\OptimisticLockException',
'nativequery' => 'Doctrine\\ORM\\NativeQuery',
'postflusheventargs' => 'Doctrine\\ORM\\Event\\PostFlushEventArgs',
'oncleareventargs' => 'Doctrine\\Common\\Persistence\\Event\\OnClearEventArgs',
'preupdateeventargs' => 'Doctrine\\Common\\Persistence\\Event\\PreUpdateEventArgs',
'lifecycleeventargs' => 'Doctrine\\Common\\Persistence\\Event\\LifecycleEventArgs',
'loadclassmetadataeventargs' => 'Doctrine\\Common\\Persistence\\Event\\LoadClassMetadataEventArgs',
'preflusheventargs' => 'Doctrine\\ORM\\Event\\PreFlushEventArgs',
'onflusheventargs' => 'Doctrine\\ORM\\Event\\OnFlushEventArgs',
'listenersinvoker' => 'Doctrine\\ORM\\Event\\ListenersInvoker',
'unitofwork' => 'Doctrine\\ORM\\UnitOfWork',
'statement' => 'Zend\\Db\\Adapter\\Driver\\Oci8\\Statement',
'connection' => 'Zend\\Http\\Header\\Connection',
'sqlparserutils' => 'Doctrine\\DBAL\\SQLParserUtils',
'db2platform' => 'Doctrine\\DBAL\\Platforms\\DB2Platform',
'sqlserver2008platform' => 'Doctrine\\DBAL\\Platforms\\SQLServer2008Platform',
'abstractplatform' => 'Zend\\Db\\Sql\\Platform\\AbstractPlatform',
'postgresqlplatform' => 'Doctrine\\DBAL\\Platforms\\PostgreSqlPlatform',
'sqlserver2005platform' => 'Doctrine\\DBAL\\Platforms\\SQLServer2005Platform',
'keywordlist' => 'Doctrine\\DBAL\\Platforms\\Keywords\\KeywordList',
'oraclekeywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\OracleKeywords',
'sqlitekeywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\SQLiteKeywords',
'sqlserverkeywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\SQLServerKeywords',
'sqlserver2008keywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\SQLServer2008Keywords',
'db2keywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\DB2Keywords',
'reservedkeywordsvalidator' => 'Doctrine\\DBAL\\Platforms\\Keywords\\ReservedKeywordsValidator',
'mssqlkeywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\MsSQLKeywords',
'drizzlekeywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\DrizzleKeywords',
'sqlserver2005keywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\SQLServer2005Keywords',
'mysqlkeywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\MySQLKeywords',
'postgresqlkeywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\PostgreSQLKeywords',
'sqlserver2012keywords' => 'Doctrine\\DBAL\\Platforms\\Keywords\\SQLServer2012Keywords',
'sqlserver2012platform' => 'Doctrine\\DBAL\\Platforms\\SQLServer2012Platform',
'drizzleplatform' => 'Doctrine\\DBAL\\Platforms\\DrizzlePlatform',
'oracleplatform' => 'Doctrine\\DBAL\\Platforms\\OraclePlatform',
'mysqlplatform' => 'Doctrine\\DBAL\\Platforms\\MySqlPlatform',
'sqliteplatform' => 'Doctrine\\DBAL\\Platforms\\SqlitePlatform',
'sqlserverplatform' => 'Doctrine\\DBAL\\Platforms\\SQLServerPlatform',
'sqlazureplatform' => 'Doctrine\\DBAL\\Platforms\\SQLAzurePlatform',
'tablegeneratorschemavisitor' => 'Doctrine\\DBAL\\Id\\TableGeneratorSchemaVisitor',
'debugstack' => 'Doctrine\\DBAL\\Logging\\DebugStack',
'loggerchain' => 'Doctrine\\DBAL\\Logging\\LoggerChain',
'echosqllogger' => 'Doctrine\\DBAL\\Logging\\EchoSQLLogger',
'sqllogger' => 'Doctrine\\DBAL\\Logging\\SQLLogger',
'connectionexception' => 'Doctrine\\DBAL\\ConnectionException',
'expressionbuilder' => 'Doctrine\\Common\\Collections\\ExpressionBuilder',
'compositeexpression' => 'Doctrine\\Common\\Collections\\Expr\\CompositeExpression',
'lockmode' => 'Doctrine\\DBAL\\LockMode',
'conversionexception' => 'Doctrine\\DBAL\\Types\\ConversionException',
'simplearraytype' => 'Doctrine\\DBAL\\Types\\SimpleArrayType',
'guidtype' => 'Doctrine\\DBAL\\Types\\GuidType',
'texttype' => 'Doctrine\\DBAL\\Types\\TextType',
'blobtype' => 'Doctrine\\DBAL\\Types\\BlobType',
'objecttype' => 'Doctrine\\DBAL\\Types\\ObjectType',
'datetimetype' => 'Doctrine\\DBAL\\Types\\DateTimeType',
'datetype' => 'Doctrine\\DBAL\\Types\\DateType',
'floattype' => 'Doctrine\\DBAL\\Types\\FloatType',
'vardatetimetype' => 'Doctrine\\DBAL\\Types\\VarDateTimeType',
'type' => 'Mockery\\Matcher\\Type',
'integertype' => 'Doctrine\\DBAL\\Types\\IntegerType',
'booleantype' => 'Doctrine\\DBAL\\Types\\BooleanType',
'smallinttype' => 'Doctrine\\DBAL\\Types\\SmallIntType',
'datetimetztype' => 'Doctrine\\DBAL\\Types\\DateTimeTzType',
'stringtype' => 'Doctrine\\DBAL\\Types\\StringType',
'arraytype' => 'Doctrine\\DBAL\\Types\\ArrayType',
'decimaltype' => 'Doctrine\\DBAL\\Types\\DecimalType',
'biginttype' => 'Doctrine\\DBAL\\Types\\BigIntType',
'jsonarraytype' => 'Doctrine\\DBAL\\Types\\JsonArrayType',
'timetype' => 'Doctrine\\DBAL\\Types\\TimeType',
'drivermanager' => 'Doctrine\\DBAL\\DriverManager',
'sqlparserutilsexception' => 'Doctrine\\DBAL\\SQLParserUtilsException',
'dbalexception' => 'Doctrine\\DBAL\\DBALException',
'singledatabasesynchronizer' => 'Doctrine\\DBAL\\Schema\\Synchronizer\\SingleDatabaseSynchronizer',
'schemasynchronizer' => 'Doctrine\\DBAL\\Schema\\Synchronizer\\SchemaSynchronizer',
'abstractschemasynchronizer' => 'Doctrine\\DBAL\\Schema\\Synchronizer\\AbstractSchemaSynchronizer',
'columndiff' => 'Doctrine\\DBAL\\Schema\\ColumnDiff',
'sqliteschemamanager' => 'Doctrine\\DBAL\\Schema\\SqliteSchemaManager',
'mysqlschemamanager' => 'Doctrine\\DBAL\\Schema\\MySqlSchemaManager',
'visitor' => 'Doctrine\\DBAL\\Schema\\Visitor\\Visitor',
'graphviz' => 'Doctrine\\DBAL\\Schema\\Visitor\\Graphviz',
'abstractvisitor' => 'Doctrine\\DBAL\\Schema\\Visitor\\AbstractVisitor',
'dropschemasqlcollector' => 'Doctrine\\DBAL\\Schema\\Visitor\\DropSchemaSqlCollector',
'schemadiffvisitor' => 'Doctrine\\DBAL\\Schema\\Visitor\\SchemaDiffVisitor',
'createschemasqlcollector' => 'Doctrine\\DBAL\\Schema\\Visitor\\CreateSchemaSqlCollector',
'removenamespacedassets' => 'Doctrine\\DBAL\\Schema\\Visitor\\RemoveNamespacedAssets',
'tablediff' => 'Doctrine\\DBAL\\Schema\\TableDiff',
'postgresqlschemamanager' => 'Doctrine\\DBAL\\Schema\\PostgreSqlSchemaManager',
'constraint' => 'Doctrine\\DBAL\\Schema\\Constraint',
'abstractschemamanager' => 'Doctrine\\DBAL\\Schema\\AbstractSchemaManager',
'comparator' => 'Doctrine\\DBAL\\Schema\\Comparator',
'schemadiff' => 'Doctrine\\DBAL\\Schema\\SchemaDiff',
'schema' => 'Zend\\Ldap\\Node\\Schema',
'schemaconfig' => 'Doctrine\\DBAL\\Schema\\SchemaConfig',
'db2schemamanager' => 'Doctrine\\DBAL\\Schema\\DB2SchemaManager',
'oracleschemamanager' => 'Doctrine\\DBAL\\Schema\\OracleSchemaManager',
'view' => 'Zend\\View\\View',
'identifier' => 'Doctrine\\DBAL\\Schema\\Identifier',
'sqlserverschemamanager' => 'Doctrine\\DBAL\\Schema\\SQLServerSchemaManager',
'sequence' => 'Doctrine\\DBAL\\Schema\\Sequence',
'schemaexception' => 'Doctrine\\DBAL\\Schema\\SchemaException',
'abstractasset' => 'Doctrine\\DBAL\\Schema\\AbstractAsset',
'drizzleschemamanager' => 'Doctrine\\DBAL\\Schema\\DrizzleSchemaManager',
'foreignkeyconstraint' => 'Doctrine\\DBAL\\Schema\\ForeignKeyConstraint',
'driver' => 'DoctrineModule\\Options\\Driver',
'arraystatement' => 'Doctrine\\DBAL\\Cache\\ArrayStatement',
'resultcachestatement' => 'Doctrine\\DBAL\\Cache\\ResultCacheStatement',
'cacheexception' => 'Doctrine\\DBAL\\Cache\\CacheException',
'querycacheprofile' => 'Doctrine\\DBAL\\Cache\\QueryCacheProfile',
'poolingshardmanager' => 'Doctrine\\DBAL\\Sharding\\PoolingShardManager',
'sqlazureshardmanager' => 'Doctrine\\DBAL\\Sharding\\SQLAzure\\SQLAzureShardManager',
'sqlazurefederationssynchronizer' => 'Doctrine\\DBAL\\Sharding\\SQLAzure\\SQLAzureFederationsSynchronizer',
'multitenantvisitor' => 'Doctrine\\DBAL\\Sharding\\SQLAzure\\Schema\\MultiTenantVisitor',
'shardchoser' => 'Doctrine\\DBAL\\Sharding\\ShardChoser\\ShardChoser',
'multitenantshardchoser' => 'Doctrine\\DBAL\\Sharding\\ShardChoser\\MultiTenantShardChoser',
'shardingexception' => 'Doctrine\\DBAL\\Sharding\\ShardingException',
'shardmanager' => 'Doctrine\\DBAL\\Sharding\\ShardManager',
'poolingshardconnection' => 'Doctrine\\DBAL\\Sharding\\PoolingShardConnection',
'connectionhelper' => 'Doctrine\\DBAL\\Tools\\Console\\Helper\\ConnectionHelper',
'importcommand' => 'Doctrine\\DBAL\\Tools\\Console\\Command\\ImportCommand',
'runsqlcommand' => 'Doctrine\\DBAL\\Tools\\Console\\Command\\RunSqlCommand',
'reservedwordscommand' => 'Doctrine\\DBAL\\Tools\\Console\\Command\\ReservedWordsCommand',
'masterslaveconnection' => 'Doctrine\\DBAL\\Connections\\MasterSlaveConnection',
'schemaaltertablechangecolumneventargs' => 'Doctrine\\DBAL\\Event\\SchemaAlterTableChangeColumnEventArgs',
'schemaaltertablerenamecolumneventargs' => 'Doctrine\\DBAL\\Event\\SchemaAlterTableRenameColumnEventArgs',
'schemaeventargs' => 'Doctrine\\DBAL\\Event\\SchemaEventArgs',
'mysqlsessioninit' => 'Doctrine\\DBAL\\Event\\Listeners\\MysqlSessionInit',
'oraclesessioninit' => 'Doctrine\\DBAL\\Event\\Listeners\\OracleSessionInit',
'sqlsessioninit' => 'Doctrine\\DBAL\\Event\\Listeners\\SQLSessionInit',
'schemacreatetableeventargs' => 'Doctrine\\DBAL\\Event\\SchemaCreateTableEventArgs',
'schemaaltertableeventargs' => 'Doctrine\\DBAL\\Event\\SchemaAlterTableEventArgs',
'schemadroptableeventargs' => 'Doctrine\\DBAL\\Event\\SchemaDropTableEventArgs',
'schemaaltertableremovecolumneventargs' => 'Doctrine\\DBAL\\Event\\SchemaAlterTableRemoveColumnEventArgs',
'schemaaltertableaddcolumneventargs' => 'Doctrine\\DBAL\\Event\\SchemaAlterTableAddColumnEventArgs',
'schemacolumndefinitioneventargs' => 'Doctrine\\DBAL\\Event\\SchemaColumnDefinitionEventArgs',
'schemacreatetablecolumneventargs' => 'Doctrine\\DBAL\\Event\\SchemaCreateTableColumnEventArgs',
'connectioneventargs' => 'Doctrine\\DBAL\\Event\\ConnectionEventArgs',
'schemaindexdefinitioneventargs' => 'Doctrine\\DBAL\\Event\\SchemaIndexDefinitionEventArgs',
'pdoconnection' => 'Doctrine\\DBAL\\Driver\\PDOConnection',
'pdostatement' => 'Doctrine\\DBAL\\Driver\\PDOStatement',
'db2driver' => 'Doctrine\\DBAL\\Driver\\IBMDB2\\DB2Driver',
'db2statement' => 'Doctrine\\DBAL\\Driver\\IBMDB2\\DB2Statement',
'db2exception' => 'Doctrine\\DBAL\\Driver\\IBMDB2\\DB2Exception',
'db2connection' => 'Doctrine\\DBAL\\Driver\\IBMDB2\\DB2Connection',
'resultstatement' => 'Doctrine\\DBAL\\Driver\\ResultStatement',
'mysqliconnection' => 'Doctrine\\DBAL\\Driver\\Mysqli\\MysqliConnection',
'mysqlistatement' => 'Doctrine\\DBAL\\Driver\\Mysqli\\MysqliStatement',
'mysqliexception' => 'Doctrine\\DBAL\\Driver\\Mysqli\\MysqliException',
'sqlsrvconnection' => 'Doctrine\\DBAL\\Driver\\SQLSrv\\SQLSrvConnection',
'sqlsrvstatement' => 'Doctrine\\DBAL\\Driver\\SQLSrv\\SQLSrvStatement',
'sqlsrvexception' => 'Doctrine\\DBAL\\Driver\\SQLSrv\\SQLSrvException',
'lastinsertid' => 'Doctrine\\DBAL\\Driver\\SQLSrv\\LastInsertId',
'oci8exception' => 'Doctrine\\DBAL\\Driver\\OCI8\\OCI8Exception',
'oci8statement' => 'Doctrine\\DBAL\\Driver\\OCI8\\OCI8Statement',
'oci8connection' => 'Doctrine\\DBAL\\Driver\\OCI8\\OCI8Connection',
'migrationsversion' => 'Doctrine\\DBAL\\Migrations\\MigrationsVersion',
'abstractmigration' => 'Doctrine\\DBAL\\Migrations\\AbstractMigration',
'outputwriter' => 'Doctrine\\DBAL\\Migrations\\OutputWriter',
'abortmigrationexception' => 'Doctrine\\DBAL\\Migrations\\AbortMigrationException',
'yamlconfiguration' => 'Doctrine\\DBAL\\Migrations\\Configuration\\YamlConfiguration',
'abstractfileconfiguration' => 'Doctrine\\DBAL\\Migrations\\Configuration\\AbstractFileConfiguration',
'xmlconfiguration' => 'Doctrine\\DBAL\\Migrations\\Configuration\\XmlConfiguration',
'irreversiblemigrationexception' => 'Doctrine\\DBAL\\Migrations\\IrreversibleMigrationException',
'statuscommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\StatusCommand',
'executecommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\ExecuteCommand',
'diffcommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\DiffCommand',
'migratecommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\MigrateCommand',
'generatecommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\GenerateCommand',
'latestcommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\LatestCommand',
'versioncommand' => 'Doctrine\\DBAL\\Migrations\\Tools\\Console\\Command\\VersionCommand',
'skipmigrationexception' => 'Doctrine\\DBAL\\Migrations\\SkipMigrationException',
'migrationexception' => 'Doctrine\\DBAL\\Migrations\\MigrationException',
'migration' => 'Doctrine\\DBAL\\Migrations\\Migration',
'migrationtest' => 'Doctrine\\DBAL\\Migrations\\Tests\\MigrationTest',
'functionaltest' => 'Doctrine\\DBAL\\Migrations\\Tests\\Functional\\FunctionalTest',
'migrateaddsqltest' => 'MigrateAddSqlTest',
'migrationmigrateup' => 'MigrationMigrateUp',
'migrationskipmigration' => 'MigrationSkipMigration',
'migrationmigratefurther' => 'MigrationMigrateFurther',
'migrationtestcase' => 'Doctrine\\DBAL\\Migrations\\Tests\\MigrationTestCase',
'versiontest' => 'ZendTest\\Version\\VersionTest',
'versiontest_migration' => 'VersionTest_Migration',
'versiontest_migrationcustom' => 'VersionTest_MigrationCustom',
'xmlconfigurationtest' => 'Doctrine\\DBAL\\Migrations\\Tests\\Configuration\\XmlConfigurationTest',
'yamlconfigurationtest' => 'Doctrine\\DBAL\\Migrations\\Tests\\Configuration\\YamlConfigurationTest',
'abstractconfigurationtest' => 'Doctrine\\DBAL\\Migrations\\Tests\\Configuration\\AbstractConfigurationTest',
'configurationtest' => 'Doctrine\\DBAL\\Migrations\\Tests\\ConfigurationTest',
'configmigration' => 'ConfigMigration',
'config2migration' => 'Config2Migration',
'abstractlexer' => 'Doctrine\\Common\\Lexer\\AbstractLexer',
'abstractlazycollection' => 'Doctrine\\Common\\Collections\\AbstractLazyCollection',
'collection' => 'ZFTool\\Diagnostics\\Result\\Collection',
'criteria' => 'Doctrine\\Common\\Collections\\Criteria',
'arraycollection' => 'Doctrine\\Common\\Collections\\ArrayCollection',
'closureexpressionvisitor' => 'Doctrine\\Common\\Collections\\Expr\\ClosureExpressionVisitor',
'value' => 'Zend\\Memory\\Value',
'expression' => 'Zend\\Db\\Sql\\Expression',
'expressionvisitor' => 'Doctrine\\Common\\Collections\\Expr\\ExpressionVisitor',
'selectable' => 'DoctrineModule\\Paginator\\Adapter\\Selectable',
'closureexpressionvisitortest' => 'Doctrine\\Tests\\Common\\Collections\\ClosureExpressionVisitorTest',
'testobject' => 'TestObject',
'abstractlazycollectiontest' => 'Doctrine\\Tests\\Common\\Collections\\AbstractLazyCollectionTest',
'criteriatest' => 'Doctrine\\Tests\\Common\\Collections\\CriteriaTest',
'collectiontest' => 'ZendTest\\Form\\Element\\CollectionTest',
'expressionbuildertest' => 'Doctrine\\Tests\\Common\\Collections\\ExpressionBuilderTest',
'lazyarraycollection' => 'Doctrine\\Tests\\LazyArrayCollection',
'comparable' => 'Doctrine\\Common\\Comparable',
'eventsubscriber' => 'Doctrine\\Common\\EventSubscriber',
'debug' => 'Zend\\Debug\\Debug',
'classutils' => 'Doctrine\\Common\\Util\\ClassUtils',
'notifypropertychanged' => 'Doctrine\\Common\\NotifyPropertyChanged',
'classloader' => 'Composer\\Autoload\\ClassLoader',
'abstractproxyfactory' => 'Doctrine\\Common\\Proxy\\AbstractProxyFactory',
'proxygenerator' => 'Doctrine\\Common\\Proxy\\ProxyGenerator',
'unexpectedvalueexception' => 'Zend\\Barcode\\Renderer\\Exception\\UnexpectedValueException',
'proxyexception' => 'Doctrine\\Common\\Proxy\\Exception\\ProxyException',
'proxydefinition' => 'Doctrine\\Common\\Proxy\\ProxyDefinition',
'propertychangedlistener' => 'Doctrine\\Common\\PropertyChangedListener',
'eventargs' => 'Doctrine\\Common\\EventArgs',
'staticreflectionmethod' => 'Doctrine\\Common\\Reflection\\StaticReflectionMethod',
'reflectionproviderinterface' => 'Doctrine\\Common\\Reflection\\ReflectionProviderInterface',
'staticreflectionparser' => 'Doctrine\\Common\\Reflection\\StaticReflectionParser',
'staticreflectionproperty' => 'Doctrine\\Common\\Reflection\\StaticReflectionProperty',
'runtimepublicreflectionproperty' => 'Doctrine\\Common\\Reflection\\RuntimePublicReflectionProperty',
'classfinderinterface' => 'Doctrine\\Common\\Reflection\\ClassFinderInterface',
'staticreflectionclass' => 'Doctrine\\Common\\Reflection\\StaticReflectionClass',
'psr0findfile' => 'Doctrine\\Common\\Reflection\\Psr0FindFile',
'managerregistry' => 'Doctrine\\Common\\Persistence\\ManagerRegistry',
'runtimereflectionservice' => 'Doctrine\\Common\\Persistence\\Mapping\\RuntimeReflectionService',
'reflectionservice' => 'Doctrine\\Common\\Persistence\\Mapping\\ReflectionService',
'staticreflectionservice' => 'Doctrine\\Common\\Persistence\\Mapping\\StaticReflectionService',
'filelocator' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\FileLocator',
'filedriver' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\FileDriver',
'defaultfilelocator' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\DefaultFileLocator',
'mappingdriver' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\MappingDriver',
'symfonyfilelocator' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\SymfonyFileLocator',
'mappingdriverchain' => 'Doctrine\\Common\\Persistence\\Mapping\\Driver\\MappingDriverChain',
'abstractclassmetadatafactory' => 'Doctrine\\Common\\Persistence\\Mapping\\AbstractClassMetadataFactory',
'objectmanager' => 'Doctrine\\Common\\Persistence\\ObjectManager',
'abstractmanagerregistry' => 'Doctrine\\Common\\Persistence\\AbstractManagerRegistry',
'objectmanagerdecorator' => 'Doctrine\\Common\\Persistence\\ObjectManagerDecorator',
'objectrepository' => 'DoctrineModule\\Authentication\\Storage\\ObjectRepository',
'persistentobject' => 'Doctrine\\Common\\Persistence\\PersistentObject',
'connectionregistry' => 'Doctrine\\Common\\Persistence\\ConnectionRegistry',
'managereventargs' => 'Doctrine\\Common\\Persistence\\Event\\ManagerEventArgs',
'objectmanageraware' => 'Doctrine\\Common\\Persistence\\ObjectManagerAware',
'eventmanager' => 'Zend\\EventManager\\EventManager',
'commonexception' => 'Doctrine\\Common\\CommonException',
'nativephpunittask' => 'NativePhpunitTask',
'nativephpunitprinter' => 'NativePhpunitPrinter',
'eventmanagertest' => 'ZendTest\\EventManager\\EventManagerTest',
'testeventsubscriber' => 'TestEventSubscriber',
'debugtest' => 'ZendTest\\Debug\\DebugTest',
'classutilstest' => 'Doctrine\\Tests\\Common\\Util\\ClassUtilsTest',
'childobject' => 'Doctrine\\Tests\\Common\\Util\\ChildObject',
'stdclass' => 'MyProject\\Proxies\\__CG__\\stdClass',
'doctrine\\tests\\common\\util\\childobject' => 'MyProject\\Proxies\\__CG__\\Doctrine\\Tests\\Common\\Util\\ChildObject',
'otherproject\\proxies\\__cg__\\stdclass' => 'MyProject\\Proxies\\__CG__\\OtherProject\\Proxies\\__CG__\\stdClass',
'otherproject\\proxies\\__cg__\\doctrine\\tests\\common\\util\\childobject' => 'MyProject\\Proxies\\__CG__\\OtherProject\\Proxies\\__CG__\\Doctrine\\Tests\\Common\\Util\\ChildObject',
'classd' => 'ClassLoaderTest\\ClassD',
'classloadertest_classb' => 'ClassLoaderTest_ClassB',
'classe' => 'ClassLoaderTest\\ClassE',
'classloadertest_classc' => 'ClassLoaderTest_ClassC',
'classloadertest_classa' => 'ClassLoaderTest_ClassA',
'classloadertest' => 'Doctrine\\Tests\\Common\\ClassLoaderTest',
'callabletypehintclass' => 'ZendTest\\Code\\Reflection\\TestAsset\\CallableTypeHintClass',
'autoloadertest' => 'Doctrine\\Tests\\Common\\Proxy\\AutoloaderTest',
'proxymagicmethodstest' => 'Doctrine\\Tests\\Common\\Proxy\\ProxyMagicMethodsTest',
'magicgetbyrefclass' => 'Doctrine\\Tests\\Common\\Proxy\\MagicGetByRefClass',
'magiccloneclass' => 'Doctrine\\Tests\\Common\\Proxy\\MagicCloneClass',
'proxylogictest' => 'Doctrine\\Tests\\Common\\Proxy\\ProxyLogicTest',
'sleepclass' => 'Doctrine\\Tests\\Common\\Proxy\\SleepClass',
'magicsetclass' => 'Doctrine\\Tests\\Common\\Proxy\\MagicSetClass',
'lazyloadableobjectclassmetadata' => 'Doctrine\\Tests\\Common\\Proxy\\LazyLoadableObjectClassMetadata',
'magicissetclass' => 'Doctrine\\Tests\\Common\\Proxy\\MagicIssetClass',
'abstractproxyfactorytest' => 'Doctrine\\Tests\\Common\\Proxy\\AbstractProxyFactoryTest',
'magicwakeupclass' => 'Doctrine\\Tests\\Common\\Proxy\\MagicWakeupClass',
'invalidtypehintclass' => 'Doctrine\\Tests\\Common\\Proxy\\InvalidTypeHintClass',
'proxyclassgeneratortest' => 'Doctrine\\Tests\\Common\\Proxy\\ProxyClassGeneratorTest',
'evalbase' => 'EvalBase',
'magicsleepclass' => 'Doctrine\\Tests\\Common\\Proxy\\MagicSleepClass',
'lazyloadableobject' => 'Doctrine\\Tests\\Common\\Proxy\\LazyLoadableObject',
'magicgetclass' => 'Doctrine\\Tests\\Common\\Proxy\\MagicGetClass',
'noparent' => 'Doctrine\\Tests\\Common\\Reflection\\Dummies\\NoParent',
'runtimepublicreflectionpropertytest' => 'Doctrine\\Tests\\Common\\Reflection\\RuntimePublicReflectionPropertyTest',
'runtimepublicreflectionpropertytestproxymock' => 'RuntimePublicReflectionPropertyTestProxyMock',
'useparent' => 'Doctrine\\Tests\\Common\\Reflection\\UseParent',
'fullyclassifiedparent' => 'Doctrine\\Tests\\Common\\Reflection\\FullyClassifiedParent',
'samenamespaceparent' => 'Doctrine\\Tests\\Common\\Reflection\\SameNamespaceParent',
'staticreflectionparsertest' => 'Doctrine\\Tests\\Common\\Reflection\\StaticReflectionParserTest',
'persistentobjecttest' => 'Doctrine\\Tests\\Common\\Persistence\\PersistentObjectTest',
'testobjectmetadata' => 'TestObjectMetadata',
'runtimereflectionservicetest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\RuntimeReflectionServiceTest',
'defaultfilelocatortest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\DefaultFileLocatorTest',
'staticphpdrivertest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\StaticPHPDriverTest',
'testentity' => 'TestEntity',
'classmetadatafactorytest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\ClassMetadataFactoryTest',
'testclassmetadatafactory' => 'TestClassMetadataFactory',
'rootentity' => 'RootEntity',
'childentity' => 'ChildEntity',
'driverchaintest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\DriverChainTest',
'driverchainentity' => 'DriverChainEntity',
'phpdrivertest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\PHPDriverTest',
'filedrivertest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\FileDriverTest',
'testfiledriver' => 'TestFileDriver',
'symfonyfilelocatortest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\SymfonyFileLocatorTest',
'staticreflectionservicetest' => 'Doctrine\\Tests\\Common\\Persistence\\Mapping\\StaticReflectionServiceTest',
'nullobjectmanagerdecorator' => 'Doctrine\\Tests\\Common\\Persistence\\NullObjectManagerDecorator',
'objectmanagerdecoratortest' => 'ObjectManagerDecoratorTest',
'indexedreader' => 'Doctrine\\Common\\Annotations\\IndexedReader',
'reader' => 'Zend\\Feed\\Reader\\Reader',
'ignoreannotation' => 'Doctrine\\Common\\Annotations\\Annotation\\IgnoreAnnotation',
'attribute' => 'Zend\\Ldap\\Attribute',
'enum' => 'Doctrine\\Common\\Annotations\\Annotation\\Enum',
'required' => 'Zend\\Form\\Annotation\\Required',
'target' => 'Doctrine\\Common\\Annotations\\Annotation\\Target',
'attributes' => 'Zend\\Form\\Annotation\\Attributes',
'annotationexception' => 'Doctrine\\Common\\Annotations\\AnnotationException',
'cachedreader' => 'Doctrine\\Common\\Annotations\\CachedReader',
'doclexer' => 'Doctrine\\Common\\Annotations\\DocLexer',
'tokenparser' => 'Doctrine\\Common\\Annotations\\TokenParser',
'annotationreader' => 'Doctrine\\Common\\Annotations\\AnnotationReader',
'filecachereader' => 'Doctrine\\Common\\Annotations\\FileCacheReader',
'docparser' => 'Doctrine\\Common\\Annotations\\DocParser',
'annotationregistry' => 'Doctrine\\Common\\Annotations\\AnnotationRegistry',
'simpleannotationreader' => 'Doctrine\\Common\\Annotations\\SimpleAnnotationReader',
'phpparser' => 'Doctrine\\Common\\Annotations\\PhpParser',
'simpleannotationreadertest' => 'Doctrine\\Tests\\Common\\Annotations\\SimpleAnnotationReaderTest',
'dcom55test' => 'Doctrine\\Tests\\Common\\Annotations\\Ticket\\DCOM55Test',
'dummy' => 'ZendTest\\Serializer\\TestAsset\\Dummy',
'dcom55annotation' => 'DCOM55Annotation',
'dcom55consumer' => 'DCOM55Consumer',
'dcom58test' => 'Doctrine\\Tests\\Common\\Annotations\\Ticket\\DCOM58Test',
'mappedclass' => 'MappedClass',
'doctrine\\orm\\mapping\\entity' => 'Doctrine\\Tests\\Common\\Annotations\\Ticket\\Doctrine\\ORM\\Mapping\\Entity',
'doctrine\\orm\\entity' => 'Doctrine\\Tests\\Common\\Annotations\\Ticket\\Doctrine\\ORM\\Entity',
'annotationreadertest' => 'Doctrine\\Tests\\Common\\Annotations\\AnnotationReaderTest',
'phpparsertest' => 'Doctrine\\Tests\\Common\\Annotations\\PhpParserTest',
'performancetest' => 'Doctrine\\Tests\\Common\\Annotations\\PerformanceTest',
'dummyclass' => 'Doctrine\\Tests\\Common\\Annotations\\DummyClass',
'cachedreadertest' => 'Doctrine\\Tests\\Common\\Annotations\\CachedReaderTest',
'doclexertest' => 'Doctrine\\Tests\\Common\\Annotations\\DocLexerTest',
'docparsertest' => 'Doctrine\\Tests\\Common\\Annotations\\DocParserTest',
'someannotationclassnamewithoutconstructor' => 'SomeAnnotationClassNameWithoutConstructor',
'someannotationwithconstructorwithoutparams' => 'SomeAnnotationWithConstructorWithoutParams',
'someannotationclassnamewithoutconstructorandproperties' => 'SomeAnnotationClassNameWithoutConstructorAndProperties',
'annotationwithinvalidtargetdeclaration' => 'AnnotationWithInvalidTargetDeclaration',
'annotationwithtargetempty' => 'AnnotationWithTargetEmpty',
'annotationextendsannotationtargetall' => 'AnnotationExtendsAnnotationTargetAll',
'name' => 'Zend\\Form\\Annotation\\Name',
'marker' => 'Marker',
'true' => 'True',
'false' => 'False',
'null' => 'Zend\\Paginator\\Adapter\\Null',
'foobar\\name' => 'Doctrine\\Tests\\Common\\Annotations\\FooBar\\Name',
'filecachereadertest' => 'Doctrine\\Tests\\Common\\Annotations\\FileCacheReaderTest',
'classwithannotationenum' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithAnnotationEnum',
'route' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\Annotation\\Route',
'secure' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\Annotation\\Secure',
'autoload' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\Annotation\\Autoload',
'annotwithdefaultvalue' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\Annotation\\AnnotWithDefaultValue',
'template' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\Annotation\\Template',
'classddc1660' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassDDC1660',
'equalnamespacesperfilewithclassasfirst' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\EqualNamespacesPerFileWithClassAsFirst',
'invalidannotationusageclass' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\InvalidAnnotationUsageClass',
'annotationtargetpropertymethod' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationTargetPropertyMethod',
'classwithannotationwithtargetsyntaxerror' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithAnnotationWithTargetSyntaxError',
'annotationstestsfixturesnonnamespacedclass' => 'AnnotationsTestsFixturesNonNamespacedClass',
'differentnamespacesperfilewithclassasfirst' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\DifferentNamespacesPerFileWithClassAsFirst',
'classwithclosure' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithClosure',
'annotationwithconstants' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationWithConstants',
'annotationenumliteral' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationEnumLiteral',
'annotationtargetclass' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationTargetClass',
'annotationwithvartype' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationWithVarType',
'annotationenumliteralinvalid' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationEnumLiteralInvalid',
'classwithinvalidannotationtargetatclass' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithInvalidAnnotationTargetAtClass',
'classwithrequire' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithRequire',
'annotationenuminvalid' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationEnumInvalid',
'multipleimportsinusestatement' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\MultipleImportsInUseStatement',
'noannotation' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\NoAnnotation',
'classwithinvalidannotationtargetatproperty' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithInvalidAnnotationTargetAtProperty',
'namespaceandclasscommentedout' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\NamespaceAndClassCommentedOut',
'anotherclass' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnotherClass',
'multipleclassesinfile' => 'MultipleClassesInFile',
'namespacedsingleclassloc1000' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\NamespacedSingleClassLOC1000',
'intefacewithconstants' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\IntefaceWithConstants',
'\\globalnamespacesperfilewithclassaslast' => '\\GlobalNamespacesPerFileWithClassAsLast',
'api' => 'ZendService\\Api\\Api',
'classwithconstants' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithConstants',
'annotationwithrequiredattributeswithoutcontructor' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationWithRequiredAttributesWithoutContructor',
'controller' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\Controller',
'equalnamespacesperfilewithclassaslast' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\EqualNamespacesPerFileWithClassAsLast',
'annotationwithattributes' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationWithAttributes',
'differentnamespacesperfilewithclassaslast' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\DifferentNamespacesPerFileWithClassAsLast',
'namespacewithclosuredeclaration' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\NamespaceWithClosureDeclaration',
'singleclassloc1000' => 'SingleClassLOC1000',
'annotationenum' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationEnum',
'annotationtargetall' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationTargetAll',
'annotationtargetannotation' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationTargetAnnotation',
'invalidannotationusagebutignoredclass' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\InvalidAnnotationUsageButIgnoredClass',
'classwithfullyqualifiedusestatements' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithFullyQualifiedUseStatements',
'annotationwithrequiredattributes' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationWithRequiredAttributes',
'classwithvalidannotationtarget' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithValidAnnotationTarget',
'annotationwithtargetsyntaxerror' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationWithTargetSyntaxError',
'testinterface' => 'TestInterface',
'\\globalnamespacesperfilewithclassasfirst' => '\\GlobalNamespacesPerFileWithClassAsFirst',
'classwithinvalidannotationtargetatmethod' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithInvalidAnnotationTargetAtMethod',
'annotationtargetmethod' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\AnnotationTargetMethod',
'classwithannotationwithvartype' => 'Doctrine\\Tests\\Common\\Annotations\\Fixtures\\ClassWithAnnotationWithVarType',
'toplevelannotation' => 'TopLevelAnnotation',
'abstractreadertest' => 'Doctrine\\Tests\\Common\\Annotations\\AbstractReaderTest',
'testparseannotationclass' => 'TestParseAnnotationClass',
'testignoresnonannotationsclass' => 'TestIgnoresNonAnnotationsClass',
'testtoplevelannotationclass' => 'TestTopLevelAnnotationClass',
'testnonexistentannotationclass' => 'TestNonExistentAnnotationClass',
'testannotationnotimportedclass' => 'TestAnnotationNotImportedClass',
'testchildclass' => 'TestChildClass',
'testparentclass' => 'TestParentClass',
'testimportwithconcreteannotation' => 'TestImportWithConcreteAnnotation',
'dummyclass2' => 'DummyClass2',
'dummyid' => 'DummyId',
'dummycolumn' => 'DummyColumn',
'dummygeneratedvalue' => 'DummyGeneratedValue',
'dummyannotation' => 'DummyAnnotation',
'dummyannotationwithignoredannotation' => 'DummyAnnotationWithIgnoredAnnotation',
'dummyjoincolumn' => 'DummyJoinColumn',
'dummyjointable' => 'DummyJoinTable',
'dummyclasssyntaxerror' => 'DummyClassSyntaxError',
'dummyclassmethodsyntaxerror' => 'DummyClassMethodSyntaxError',
'dummyclasspropertysyntaxerror' => 'DummyClassPropertySyntaxError',
'dummyclassnonannotationproblem' => 'DummyClassNonAnnotationProblem',
'dummyclasswithemail' => 'DummyClassWithEmail',
'dcom106' => 'DCOM106',
'foo\\name' => 'Doctrine\\Tests\\Common\\Annotations\\Foo\\Name',
'bar\\name' => 'Doctrine\\Tests\\Common\\Annotations\\Bar\\Name',
'memcachedcache' => 'Doctrine\\Common\\Cache\\MemcachedCache',
'zenddatacache' => 'Doctrine\\Common\\Cache\\ZendDataCache',
'apccache' => 'Assetic\\Cache\\ApcCache',
'couchbasecache' => 'Doctrine\\Common\\Cache\\CouchbaseCache',
'rediscache' => 'Doctrine\\Common\\Cache\\RedisCache',
'memcachecache' => 'Doctrine\\Common\\Cache\\MemcacheCache',
'xcachecache' => 'Doctrine\\Common\\Cache\\XcacheCache',
'mongodbcache' => 'Doctrine\\Common\\Cache\\MongoDBCache',
'filecache' => 'Doctrine\\Common\\Cache\\FileCache',
'wincachecache' => 'Doctrine\\Common\\Cache\\WinCacheCache',
'cache' => 'Zend\\XmlRpc\\Server\\Cache',
'filesystemcache' => 'Assetic\\Cache\\FilesystemCache',
'cacheprovider' => 'Doctrine\\Common\\Cache\\CacheProvider',
'riakcache' => 'Doctrine\\Common\\Cache\\RiakCache',
'arraycache' => 'Assetic\\Cache\\ArrayCache',
'phpfilecache' => 'Doctrine\\Common\\Cache\\PhpFileCache',
'zenddatacachetest' => 'Doctrine\\Tests\\Common\\Cache\\ZendDataCacheTest',
'cachetest' => 'ZfTest\\CacheTest',
'apccachetest' => 'Doctrine\\Tests\\Common\\Cache\\ApcCacheTest',
'filesystemcachetest' => 'Doctrine\\Tests\\Common\\Cache\\FilesystemCacheTest',
'memcachedcachetest' => 'Doctrine\\Tests\\Common\\Cache\\MemcachedCacheTest',
'rediscachetest' => 'Doctrine\\Tests\\Common\\Cache\\RedisCacheTest',
'arraycachetest' => 'Doctrine\\Tests\\Common\\Cache\\ArrayCacheTest',
'mongodbcachetest' => 'Doctrine\\Tests\\Common\\Cache\\MongoDBCacheTest',
'phpfilecachetest' => 'Doctrine\\Tests\\Common\\Cache\\PhpFileCacheTest',
'notsetstateclass' => 'NotSetStateClass',
'setstateclass' => 'SetStateClass',
'basefilecachetest' => 'Doctrine\\Tests\\Common\\Cache\\BaseFileCacheTest',
'riakcachetest' => 'Doctrine\\Tests\\Common\\Cache\\RiakCacheTest',
'filecachetest' => 'Doctrine\\Tests\\Common\\Cache\\FileCacheTest',
'memcachecachetest' => 'Doctrine\\Tests\\Common\\Cache\\MemcacheCacheTest',
'xcachecachetest' => 'Doctrine\\Tests\\Common\\Cache\\XcacheCacheTest',
'wincachecachetest' => 'Doctrine\\Tests\\Common\\Cache\\WincacheCacheTest',
'couchbasecachetest' => 'Doctrine\\Tests\\Common\\Cache\\CouchbaseCacheTest',
'version20120714005702' => 'TravisDoctrineMigrations\\Version20120714005702',
'dbalconfiguration' => 'DoctrineORMModule\\Options\\DBALConfiguration',
'dbalconnection' => 'DoctrineORMModule\\Options\\DBALConnection',
'entityresolver' => 'DoctrineORMModule\\Options\\EntityResolver',
'sqlloggercollectoroptions' => 'DoctrineORMModule\\Options\\SQLLoggerCollectorOptions',
'metadatagrapher' => 'DoctrineORMModule\\Yuml\\MetadataGrapher',
'yumlcontroller' => 'DoctrineORMModule\\Yuml\\YumlController',
'annotationbuilder' => 'Zend\\Form\\Annotation\\AnnotationBuilder',
'elementannotationslistener' => 'Zend\\Form\\Annotation\\ElementAnnotationsListener',
'entityradio' => 'DoctrineORMModule\\Form\\Element\\EntityRadio',
'entityselect' => 'DoctrineORMModule\\Form\\Element\\EntitySelect',
'entitymulticheckbox' => 'DoctrineORMModule\\Form\\Element\\EntityMultiCheckbox',
'doctrineentity' => 'DoctrineORMModule\\Stdlib\\Hydrator\\DoctrineEntity',
'entitymanageraliascompatfactory' => 'DoctrineORMModule\\Service\\EntityManagerAliasCompatFactory',
'entityresolverfactory' => 'DoctrineORMModule\\Service\\EntityResolverFactory',
'formannotationbuilderfactory' => 'DoctrineORMModule\\Service\\FormAnnotationBuilderFactory',
'configurationfactory' => 'DoctrineORMModule\\Service\\ConfigurationFactory',
'entitymanagerfactory' => 'DoctrineORMModule\\Service\\EntityManagerFactory',
'objectmulticheckboxfactory' => 'DoctrineORMModule\\Service\\ObjectMultiCheckboxFactory',
'dbalconnectionfactory' => 'DoctrineORMModule\\Service\\DBALConnectionFactory',
'migrationscommandfactory' => 'DoctrineORMModule\\Service\\MigrationsCommandFactory',
'migrationsconfigurationfactory' => 'DoctrineORMModule\\Service\\MigrationsConfigurationFactory',
'objectradiofactory' => 'DoctrineORMModule\\Service\\ObjectRadioFactory',
'sqlloggercollectorfactory' => 'DoctrineORMModule\\Service\\SQLLoggerCollectorFactory',
'dbalconfigurationfactory' => 'DoctrineORMModule\\Service\\DBALConfigurationFactory',
'mappingcollectorfactory' => 'DoctrineORMModule\\Service\\MappingCollectorFactory',
'doctrineobjecthydratorfactory' => 'DoctrineORMModule\\Service\\DoctrineObjectHydratorFactory',
'objectselectfactory' => 'DoctrineORMModule\\Service\\ObjectSelectFactory',
'sqlloggercollector' => 'DoctrineORMModule\\Collector\\SQLLoggerCollector',
'mappingcollector' => 'DoctrineORMModule\\Collector\\MappingCollector',
'doctrinepaginator' => 'DoctrineORMModule\\Paginator\\Adapter\\DoctrinePaginator',
'entitymanagertest' => 'DoctrineORMModuleTest\\Options\\EntityManagerTest',
'configurationoptionstest' => 'DoctrineORMModuleTest\\Options\\ConfigurationOptionsTest',
'sqlloggercollectoroptionstest' => 'DoctrineORMModuleTest\\Options\\SQLLoggerCollectorOptionsTest',
'metadatagraphertest' => 'DoctrineORMModuleTest\\Yuml\\MetadataGrapherTest',
'yumlcontrollertest' => 'DoctrineORMModuleTest\\Yuml\\YumlControllerTest',
'annotationbuildertest' => 'ZendTest\\Form\\Annotation\\AnnotationBuilderTest',
'elementannotationslistenertest' => 'DoctrineORMModuleTest\\Form\\ElementAnnotationsListenerTest',
'sqlloggercollectorfactorytest' => 'DoctrineORMModuleTest\\Service\\SQLLoggerCollectorFactoryTest',
'entityresolverfactorytest' => 'DoctrineORMModuleTest\\Service\\EntityResolverFactoryTest',
'configurationfactorytest' => 'DoctrineORMModuleTest\\Service\\ConfigurationFactoryTest',
'migrationscommandfactorytest' => 'DoctrineORMModuleTest\\Service\\MigrationsCommandFactoryTest',
'sqlloggercollectortest' => 'DoctrineORMModuleTest\\Collector\\SQLLoggerCollectorTest',
'mappingcollectortest' => 'DoctrineORMModuleTest\\Collector\\MappingCollectorTest',
'testcase' => 'DoctrineORMModuleTest\\Framework\\TestCase',
'servicemanagerfactory' => 'DoctrineORMModuleTest\\Util\\ServiceManagerFactory',
'adaptertestignore' => 'DoctrineORMModuleTest\\Paginator\\AdapterTestIgnore',
'clitest' => 'DoctrineORMModuleTest\\CliTest',
'user' => 'ZendTest\\Permissions\\Acl\\TestAsset\\UseCase1\\User',
'session' => 'Zend\\Cache\\Storage\\Adapter\\Session',
'usergroup' => 'DoctrineORMModuleTest\\Assets\\GraphEntity\\UserGroup',
'address' => 'ZendTest\\Form\\TestAsset\\Entity\\Address',
'testfixture' => 'DoctrineORMModuleTest\\Assets\\Fixture\\TestFixture',
'targetinterface' => 'DoctrineORMModuleTest\\Assets\\Entity\\TargetInterface',
'formentity' => 'DoctrineORMModuleTest\\Assets\\Entity\\FormEntity',
'targetentity' => 'DoctrineORMModuleTest\\Assets\\Entity\\TargetEntity',
'city' => 'ZendTest\\Form\\TestAsset\\Entity\\City',
'formentitytarget' => 'DoctrineORMModuleTest\\Assets\\Entity\\FormEntityTarget',
'issue237' => 'DoctrineORMModuleTest\\Assets\\Entity\\Issue237',
'resolvetarget' => 'DoctrineORMModuleTest\\Assets\\Entity\\ResolveTarget',
'category' => 'ZendTest\\Form\\TestAsset\\Entity\\Category',
'country' => 'ZendTest\\Form\\TestAsset\\Entity\\Country',
'test' => 'Test',
'product' => 'ZendTest\\Form\\TestAsset\\Entity\\Product',
'date' => 'Zend\\Http\\Header\\Date',
'authentication' => 'Zend\\Authentication\\Validator\\Authentication',
'noobjectexists' => 'DoctrineModule\\Validator\\NoObjectExists',
'objectexists' => 'DoctrineModule\\Validator\\ObjectExists',
'uniqueobject' => 'DoctrineModule\\Validator\\UniqueObject',
'objectradio' => 'DoctrineModule\\Form\\Element\\ObjectRadio',
'objectmulticheckbox' => 'DoctrineModule\\Form\\Element\\ObjectMultiCheckbox',
'objectselect' => 'DoctrineModule\\Form\\Element\\ObjectSelect',
'symfonycli' => 'DoctrineModule\\Mvc\\Router\\Console\\SymfonyCli',
'clicontrollerfactory' => 'DoctrineModule\\Service\\CliControllerFactory',
'eventmanagerfactory' => 'Zend\\Mvc\\Service\\EventManagerFactory',
'clifactory' => 'DoctrineModule\\Service\\CliFactory',
'zendstoragecachefactory' => 'DoctrineModule\\Service\\ZendStorageCacheFactory',
'driverfactory' => 'DoctrineModule\\Service\\DriverFactory',
'symfonycliroutefactory' => 'DoctrineModule\\Service\\SymfonyCliRouteFactory',
'abstractfactory' => 'DoctrineModule\\Service\\AbstractFactory',
'adapterfactory' => 'DoctrineModule\\Service\\Authentication\\AdapterFactory',
'storagefactory' => 'Zend\\Cache\\StorageFactory',
'authenticationservicefactory' => 'DoctrineModule\\Service\\Authentication\\AuthenticationServiceFactory',
'cachefactory' => 'DoctrineModule\\Service\\CacheFactory',
'clicontroller' => 'DoctrineModule\\Controller\\CliController',
'zendstoragecache' => 'DoctrineModule\\Cache\\ZendStorageCache',
'doctrinecachestorage' => 'DoctrineModule\\Cache\\DoctrineCacheStorage',
'propertyname' => 'DoctrineModule\\Stdlib\\Hydrator\\Filter\\PropertyName',
'doctrineobject' => 'DoctrineModule\\Stdlib\\Hydrator\\DoctrineObject',
'disallowremovebyvalue' => 'DoctrineModule\\Stdlib\\Hydrator\\Strategy\\DisallowRemoveByValue',
'disallowremovebyreference' => 'DoctrineModule\\Stdlib\\Hydrator\\Strategy\\DisallowRemoveByReference',
'abstractcollectionstrategy' => 'DoctrineModule\\Stdlib\\Hydrator\\Strategy\\AbstractCollectionStrategy',
'allowremovebyvalue' => 'DoctrineModule\\Stdlib\\Hydrator\\Strategy\\AllowRemoveByValue',
'allowremovebyreference' => 'DoctrineModule\\Stdlib\\Hydrator\\Strategy\\AllowRemoveByReference',
'propertyoutput' => 'DoctrineModule\\Component\\Console\\Output\\PropertyOutput',
'requestinput' => 'DoctrineModule\\Component\\Console\\Input\\RequestInput',
'providesobjectmanager' => 'DoctrineModule\\Persistence\\ProvidesObjectManager',
'objectmanagerawareinterface' => 'DoctrineModule\\Persistence\\ObjectManagerAwareInterface',
'abstractdoctrineservicefactory' => 'DoctrineModule\\ServiceFactory\\AbstractDoctrineServiceFactory',
'uniqueobjecttest' => 'DoctrineModuleTest\\Validator\\Adapter\\UniqueObjectTest',
'noobjectexiststest' => 'DoctrineModuleTest\\Validator\\Adapter\\NoObjectExistsTest',
'objectexiststest' => 'DoctrineModuleTest\\Validator\\Adapter\\ObjectExistsTest',
'proxytest' => 'ZendTest\\Authentication\\Adapter\\Http\\ProxyTest',
'objectselecttest' => 'DoctrineModuleTest\\Form\\Element\\ObjectSelectTest',
'objectmulticheckboxtest' => 'DoctrineModuleTest\\Form\\Element\\ObjectMultiCheckboxTest',
'formobject' => 'DoctrineModuleTest\\Form\\Element\\TestAsset\\FormObject',
'symfonyclitest' => 'DoctrineModuleTest\\Mvc\\Router\\Console\\SymfonyCliTest',
'metadatadrivermock' => 'DoctrineModuleTest\\Service\\Mock\\MetadataDriverMock',
'cachefactorytest' => 'DoctrineModuleTest\\Service\\CacheFactoryTest',
'eventmanagerfactorytest' => 'DoctrineModuleTest\\Service\\EventManagerFactoryTest',
'storagefactorytest' => 'ZendTest\\Cache\\StorageFactoryTest',
'authenticationservicefactorytest' => 'DoctrineModuleTest\\Service\\Authentication\\AuthenticationServiceFactoryTest',
'adapterfactorytest' => 'DoctrineModuleTest\\Service\\Authentication\\AdapterFactoryTest',
'driverfactorytest' => 'DoctrineModuleTest\\Service\\DriverFactoryTest',
'dummyeventsubscriber' => 'DoctrineModuleTest\\Service\\TestAsset\\DummyEventSubscriber',
'clicontrollertest' => 'DoctrineModuleTest\\Controller\\CliControllerTest',
'selectableadaptertest' => 'DoctrineModuleTest\\Paginator\\Adapter\\SelectableAdapterTest',
'collectionadaptertest' => 'DoctrineModuleTest\\Paginator\\Adapter\\CollectionAdapterTest',
'servicemanagertestcase' => 'DoctrineModuleTest\\ServiceManagerTestCase',
'objectrepositorytest' => 'DoctrineModuleTest\\Authentication\\Storage\\ObjectRepositoryTest',
'identityobject' => 'ZendTest\\View\\Helper\\TestAsset\\IdentityObject',
'publicpropertiesidentityobject' => 'DoctrineModuleTest\\Authentication\\Adapter\\TestAsset\\PublicPropertiesIdentityObject',
'doctrinecachestoragetest' => 'DoctrineModuleTest\\Cache\\DoctrineCacheStorageTest',
'zendstoragecachetest' => 'DoctrineModuleTest\\Cache\\ZendStorageCacheTest',
'simpleentitywithdatetime' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\SimpleEntityWithDateTime',
'simpleentity' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\SimpleEntity',
'onetomanyentity' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\OneToManyEntity',
'onetomanyarrayentity' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\OneToManyArrayEntity',
'contextstrategy' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\ContextStrategy',
'contextentity' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\ContextEntity',
'simplestrategy' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\SimpleStrategy',
'onetooneentity' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\OneToOneEntity',
'onetooneentitynotnullable' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\OneToOneEntityNotNullable',
'simpleisentity' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\Asset\\SimpleIsEntity',
'doctrineobjecttest' => 'DoctrineModuleTest\\Stdlib\\Hydrator\\DoctrineObjectTest',
'propertyoutputtest' => 'DoctrineModuleTest\\Component\\Console\\Output\\PropertyOutputTest',
'requestinputtest' => 'DoctrineModuleTest\\Component\\Console\\Input\\RequestInputTest',
'moduledefinedservicestest' => 'DoctrineModuleTest\\ServiceFactory\\ModuleDefinedServicesTest',
'abstractactioncontroller' => 'Zend\\Mvc\\Controller\\AbstractActionController',
'renderstrategymanager' => 'AssetsBundle\\Service\\RenderStrategyManager',
'assetsfiltermanager' => 'AssetsBundle\\Service\\AssetsFilterManager',
'serviceoptions' => 'AssetsBundle\\Service\\ServiceOptions',
'jsfilter' => 'AssetsBundle\\Service\\Filter\\JsFilter',
'jpegfilter' => 'AssetsBundle\\Service\\Filter\\JpegFilter',
'abstractimagefilter' => 'AssetsBundle\\Service\\Filter\\AbstractImageFilter',
'giffilter' => 'AssetsBundle\\Service\\Filter\\GifFilter',
'pngfilter' => 'AssetsBundle\\Service\\Filter\\PngFilter',
'filterinterface' => 'Assetic\\Filter\\FilterInterface',
'lessfilter' => 'Assetic\\Filter\\LessFilter',
'cssfilter' => 'AssetsBundle\\Service\\Filter\\CssFilter',
'service' => 'Zend\\Json\\Server\\Smd\\Service',
'toolscontroller' => 'AssetsBundle\\Controller\\ToolsController',
'jscustomstrategyfactory' => 'AssetsBundle\\Factory\\JsCustomStrategyFactory',
'jscustomrendererfactory' => 'AssetsBundle\\Factory\\JsCustomRendererFactory',
'servicefactory' => 'AssetsBundle\\Factory\\ServiceFactory',
'pngfilterfactory' => 'AssetsBundle\\Factory\\Filter\\PngFilterFactory',
'lessfilterfactory' => 'AssetsBundle\\Factory\\Filter\\LessFilterFactory',
'jpegfilterfactory' => 'AssetsBundle\\Factory\\Filter\\JpegFilterFactory',
'cssfilterfactory' => 'AssetsBundle\\Factory\\Filter\\CssFilterFactory',
'jsfilterfactory' => 'AssetsBundle\\Factory\\Filter\\JsFilterFactory',
'giffilterfactory' => 'AssetsBundle\\Factory\\Filter\\GifFilterFactory',
'viewhelperstrategy' => 'AssetsBundle\\View\\Strategy\\ViewHelperStrategy',
'jscustomstrategy' => 'AssetsBundle\\View\\Strategy\\JsCustomStrategy',
'nonestrategy' => 'AssetsBundle\\View\\Strategy\\NoneStrategy',
'abstractstrategy' => 'AssetsBundle\\View\\Strategy\\AbstractStrategy',
'strategyinterface' => 'Zend\\Stdlib\\Hydrator\\Strategy\\StrategyInterface',
'jscustomrenderer' => 'AssetsBundle\\View\\Renderer\\JsCustomRenderer',
'serviceoptionstest' => 'AssetsBundleTest\\Service\\ServiceOptionsTest',
'lessfiltertest' => 'AssetsBundleTest\\Service\\Filter\\LessFilterTest',
'pngfiltertest' => 'AssetsBundleTest\\Service\\Filter\\PngFilterTest',
'jpegfiltertest' => 'AssetsBundleTest\\Service\\Filter\\JpegFilterTest',
'abstractimagefiltertest' => 'AssetsBundleTest\\Service\\Filter\\AbstractImageFilterTest',
'assetsfiltermanagertest' => 'AssetsBundleTest\\Service\\AssetsFilterManagerTest',
'renderstrategymanagertest' => 'AssetsBundleTest\\Service\\RenderStrategyManagerTest',
'serviceprodtest' => 'AssetsBundleTest\\Service\\ServiceProdTest',
'servicedevtest' => 'AssetsBundleTest\\Service\\ServiceDevTest',
'jscustomcontrollertest' => 'AssetsBundleTest\\Controller\\JsCustomControllerTest',
'testcontroller' => 'AssetsBundleTest\\Controller\\TestController',
'toolscontrollertest' => 'AssetsBundleTest\\Controller\\ToolsControllerTest',
'servicefactorytest' => 'ZendTest\\Navigation\\ServiceFactoryTest',
'viewhelperstrategytest' => 'AssetsBundleTest\\View\\Strategy\\ViewHelperStrategyTest',
'jscustomstrategytest' => 'AssetsBundleTest\\View\\Strategy\\JsCustomStrategyTest',
'jscustomrenderertest' => 'AssetsBundleTest\\View\\Renderer\\JsCustomRendererTest',
'bootstrap' => 'AssetsBundleTest\\Bootstrap',
'easyparse' => 'easyparse',
'tagparse' => 'tagparse',
'nodecounter' => 'nodecounter',
'lessify' => 'lessify',
'lessc' => 'lessc',
'lessc_parser' => 'lessc_parser',