-
Notifications
You must be signed in to change notification settings - Fork 5
/
cpanfile.snapshot
5177 lines (5177 loc) · 170 KB
/
cpanfile.snapshot
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
# carton snapshot format: version 1.0
DISTRIBUTIONS
Acme-Damn-0.06
pathname: I/IB/IBB/Acme-Damn-0.06.tar.gz
provides:
Acme::Damn 0.06
requirements:
ExtUtils::MakeMaker 0
Test::Exception 0
Test::More 0
Algorithm-C3-0.10
pathname: H/HA/HAARG/Algorithm-C3-0.10.tar.gz
provides:
Algorithm::C3 0.10
requirements:
Carp 0.01
ExtUtils::MakeMaker 0
Test::More 0.47
perl 5.006
Algorithm-Diff-1.1902
pathname: T/TY/TYEMQ/Algorithm-Diff-1.1902.tar.gz
provides:
Algorithm::Diff 1.1902
Algorithm::Diff::_impl 1.1902
Algorithm::DiffOld 1.1
requirements:
ExtUtils::MakeMaker 0
AnyEvent-7.07
pathname: M/ML/MLEHMANN/AnyEvent-7.07.tar.gz
provides:
AE 7.07
AnyEvent 7.07
AnyEvent::Base 7.07
AnyEvent::CondVar 7.07
AnyEvent::CondVar::Base 7.07
AnyEvent::Debug undef
AnyEvent::Debug::Backtrace undef
AnyEvent::Debug::Wrap undef
AnyEvent::Debug::Wrapped undef
AnyEvent::Debug::shell undef
AnyEvent::IO undef
AnyEvent::Impl::Cocoa undef
AnyEvent::Impl::EV undef
AnyEvent::Impl::Event undef
AnyEvent::Impl::EventLib undef
AnyEvent::Impl::FLTK undef
AnyEvent::Impl::Glib undef
AnyEvent::Impl::IOAsync undef
AnyEvent::Impl::Irssi undef
AnyEvent::Impl::POE undef
AnyEvent::Impl::Qt undef
AnyEvent::Impl::Qt::Io undef
AnyEvent::Impl::Qt::Timer undef
AnyEvent::Impl::Tk undef
AnyEvent::Strict undef
requirements:
ExtUtils::MakeMaker 0
AnyEvent-Filesys-Notify-1.15
pathname: M/MG/MGRIMES/AnyEvent-Filesys-Notify-1.15.tar.gz
provides:
AnyEvent::Filesys::Notify 1.15
AnyEvent::Filesys::Notify::Event undef
AnyEvent::Filesys::Notify::Role::FSEvents undef
AnyEvent::Filesys::Notify::Role::Fallback undef
AnyEvent::Filesys::Notify::Role::Inotify2 undef
AnyEvent::Filesys::Notify::Role::KQueue undef
requirements:
AnyEvent 7.05
Carp 1.20
Cwd 3.40
Data::Dump 0
Exporter 0
File::Basename 0
File::Find 0
File::Path 0
File::Spec 0
File::Temp 0
Linux::Inotify2 1.22
Module::Build 0.4004
Moo 1.003001
MooX::Types::MooseLike::Base 0.25
MooX::late 0.014
Path::Iterator::Rule 1.005
Test::Exception 0
Test::More 0.87
Test::Without::Module 0
Try::Tiny 0.18
autodie 0
namespace::sweep 0.006
perl 5.006
Authen-SASL-SASLprep-1.01
pathname: C/CF/CFAERBER/Authen-SASL-SASLprep-1.01.tar.gz
provides:
Authen::SASL::SASLprep 1.01
requirements:
Test::More 0
Test::NoWarnings 0
Unicode::Stringprep 1
Authen-SCRAM-0.005
pathname: D/DA/DAGOLDEN/Authen-SCRAM-0.005.tar.gz
provides:
Authen::SCRAM 0.005
Authen::SCRAM::Client 0.005
Authen::SCRAM::Role::Common 0.005
Authen::SCRAM::Server 0.005
requirements:
Authen::SASL::SASLprep 0
Carp 0
Crypt::URandom 0
Encode 0
ExtUtils::MakeMaker 6.17
MIME::Base64 0
Moo 1.001000
Moo::Role 1.001000
PBKDF2::Tiny 0.003
Try::Tiny 0
Types::Standard 0
namespace::clean 0
strict 0
warnings 0
B-Hooks-EndOfScope-0.13
pathname: E/ET/ETHER/B-Hooks-EndOfScope-0.13.tar.gz
provides:
B::Hooks::EndOfScope 0.13
B::Hooks::EndOfScope::PP 0.13
B::Hooks::EndOfScope::XS 0.13
requirements:
ExtUtils::CBuilder 0.26
ExtUtils::MakeMaker 6.30
Module::Implementation 0.05
Module::Runtime 0.012
Sub::Exporter::Progressive 0.001006
Variable::Magic 0.48
B-Hooks-OP-Check-0.19
pathname: Z/ZE/ZEFRAM/B-Hooks-OP-Check-0.19.tar.gz
provides:
B::Hooks::OP::Check 0.19
B::Hooks::OP::Check::Install::Files undef
requirements:
ExtUtils::Depends 0.302
ExtUtils::MakeMaker 6.42
Test::More 0
parent 0
perl 5.008001
B-Keywords-1.13
pathname: R/RU/RURBAN/B-Keywords-1.13.tar.gz
provides:
B::Keywords 1.13
requirements:
B 0
ExtUtils::MakeMaker 0
CPAN-Meta-2.142690
pathname: D/DA/DAGOLDEN/CPAN-Meta-2.142690.tar.gz
provides:
CPAN::Meta 2.142690
CPAN::Meta::Converter 2.142690
CPAN::Meta::Feature 2.142690
CPAN::Meta::History 2.142690
CPAN::Meta::Merge 2.142690
CPAN::Meta::Prereqs 2.142690
CPAN::Meta::Spec 2.142690
CPAN::Meta::Validator 2.142690
requirements:
CPAN::Meta::Requirements 2.121
CPAN::Meta::YAML 0.008
Carp 0
ExtUtils::MakeMaker 6.17
JSON::PP 2.27200
Parse::CPAN::Meta 1.4414
Scalar::Util 0
strict 0
version 0.88
warnings 0
CPAN-Meta-YAML-0.012
pathname: D/DA/DAGOLDEN/CPAN-Meta-YAML-0.012.tar.gz
provides:
CPAN::Meta::YAML 0.012
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.17
Fcntl 0
Scalar::Util 0
strict 0
warnings 0
CSS-Minifier-0.01
pathname: P/PM/PMICHAUX/CSS-Minifier-0.01.tar.gz
provides:
CSS::Minifier 0.01
requirements:
ExtUtils::MakeMaker 0
CSS-Minifier-XS-0.09
pathname: G/GT/GTERMARS/CSS-Minifier-XS-0.09.tar.gz
provides:
CSS::Minifier::XS 0.09
requirements:
ExtUtils::CBuilder 0
Module::Build 0.40
Test::More 0
Capture-Tiny-0.27
pathname: D/DA/DAGOLDEN/Capture-Tiny-0.27.tar.gz
provides:
Capture::Tiny 0.27
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.17
File::Spec 0
File::Temp 0
IO::Handle 0
Scalar::Util 0
perl 5.006
strict 0
warnings 0
Carp-Always-0.13
pathname: F/FE/FERREIRA/Carp-Always-0.13.tar.gz
provides:
Carp::Always 0.13
requirements:
Carp 0
ExtUtils::MakeMaker 0
Carp-Clan-6.04
pathname: S/ST/STBEY/Carp-Clan-6.04.tar.gz
provides:
Carp::Clan 6.04
requirements:
ExtUtils::MakeMaker 0
Test::Exception 0
Class-Accessor-0.34
pathname: K/KA/KASEI/Class-Accessor-0.34.tar.gz
provides:
Class::Accessor 0.34
Class::Accessor::Fast 0.34
Class::Accessor::Faster 0.34
requirements:
ExtUtils::MakeMaker 0
base 1.01
Class-Accessor-Chained-0.01
pathname: R/RC/RCLAMP/Class-Accessor-Chained-0.01.tar.gz
provides:
Class::Accessor::Chained 0.01
Class::Accessor::Chained::Fast undef
requirements:
Class::Accessor 0
Test::More 0
Class-Accessor-Grouped-0.10012
pathname: R/RI/RIBASUSHI/Class-Accessor-Grouped-0.10012.tar.gz
provides:
Class::Accessor::Grouped 0.10012
requirements:
Carp 0
Class::XSAccessor 1.19
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 6.59
Module::Runtime 0.012
Scalar::Util 0
Sub::Name 0.05
Test::Exception 0.31
Test::More 0.88
perl 5.006
Class-C3-0.27
pathname: H/HA/HAARG/Class-C3-0.27.tar.gz
provides:
Class::C3 0.27
requirements:
Algorithm::C3 0.07
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 0
Scalar::Util 0
perl 5.006
Class-C3-Componentised-1.001000
pathname: F/FR/FREW/Class-C3-Componentised-1.001000.tar.gz
provides:
Class::C3::Componentised 1.001000
Class::C3::Componentised::ApplyHooks undef
requirements:
Carp 0
Class::C3 0.20
Class::Inspector 0
ExtUtils::MakeMaker 6.42
MRO::Compat 0
Test::Exception 0
perl 5.006002
Class-Data-Inheritable-0.08
pathname: T/TM/TMTM/Class-Data-Inheritable-0.08.tar.gz
provides:
Class::Data::Inheritable 0.08
requirements:
ExtUtils::MakeMaker 0
Class-Inspector-1.28
pathname: A/AD/ADAMK/Class-Inspector-1.28.tar.gz
provides:
Class::Inspector 1.28
Class::Inspector::Functions 1.28
requirements:
ExtUtils::MakeMaker 6.59
File::Spec 0.80
Test::More 0.47
perl 5.006
Class-Load-0.22
pathname: E/ET/ETHER/Class-Load-0.22.tar.gz
provides:
Class::Load 0.22
Class::Load::PP 0.22
requirements:
Carp 0
Data::OptList 0
Exporter 0
ExtUtils::MakeMaker 0
Module::Build::Tiny 0.037
Module::Implementation 0.04
Module::Runtime 0.012
Package::Stash 0.14
Scalar::Util 0
Try::Tiny 0
base 0
namespace::clean 0
perl 5.006
strict 0
warnings 0
Class-Load-XS-0.08
pathname: E/ET/ETHER/Class-Load-XS-0.08.tar.gz
provides:
Class::Load::XS 0.08
requirements:
Class::Load 0.20
ExtUtils::MakeMaker 6.30
XSLoader 0
strict 0
warnings 0
Class-Method-Modifiers-2.11
pathname: E/ET/ETHER/Class-Method-Modifiers-2.11.tar.gz
provides:
Class::Method::Modifiers 2.11
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 0
base 0
strict 0
warnings 0
Class-Singleton-1.4
pathname: A/AB/ABW/Class-Singleton-1.4.tar.gz
provides:
Class::Singleton 1.4
requirements:
ExtUtils::MakeMaker 0
Class-Tiny-1.000
pathname: D/DA/DAGOLDEN/Class-Tiny-1.000.tar.gz
provides:
Class::Tiny 1.000
Class::Tiny::Object 1.000
requirements:
Carp 0
ExtUtils::MakeMaker 6.17
strict 0
warnings 0
Class-XSAccessor-1.19
pathname: S/SM/SMUELLER/Class-XSAccessor-1.19.tar.gz
provides:
Class::XSAccessor 1.19
Class::XSAccessor::Array 1.19
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Time::HiRes 0
XSLoader 0
perl 5.008
Clone-0.37
pathname: G/GA/GARU/Clone-0.37.tar.gz
provides:
Clone 0.37
requirements:
ExtUtils::MakeMaker 0
Test::More 0
Config-Any-0.24
pathname: B/BR/BRICAS/Config-Any-0.24.tar.gz
provides:
Config::Any 0.24
Config::Any::Base undef
Config::Any::General undef
Config::Any::INI undef
Config::Any::JSON undef
Config::Any::Perl undef
Config::Any::XML undef
Config::Any::YAML undef
requirements:
ExtUtils::MakeMaker 6.59
Module::Pluggable 3.01
Test::More 0
perl 5.006
Config-AutoConf-0.305
pathname: R/RE/REHSACK/Config-AutoConf-0.305.tar.gz
provides:
Config::AutoConf 0.305
requirements:
Capture::Tiny 0
Carp 0
Config 0
Cwd 0
Exporter 0
ExtUtils::CBuilder 0.23
ExtUtils::MakeMaker 0
File::Basename 0
File::Spec 0
File::Temp 0
Text::ParseWords 0
base 0
strict 0
warnings 0
Config-Tiny-2.20
pathname: R/RS/RSAVAGE/Config-Tiny-2.20.tgz
provides:
Config::Tiny 2.20
requirements:
File::Spec 3.3
File::Temp 0.22
Module::Build 0.34
Test::More 0.47
UNIVERSAL 0
perl v5.8.1
strict 0
utf8 0
Context-Preserve-0.01
pathname: J/JR/JROCKWAY/Context-Preserve-0.01.tar.gz
provides:
Context::Preserve 0.01
requirements:
Exporter 0
ExtUtils::MakeMaker 0
Test::Exception 0
Test::More 0
ok 0
Crypt-URandom-0.34
pathname: D/DD/DDICK/Crypt-URandom-0.34.tar.gz
provides:
Crypt::URandom 0.34
requirements:
Carp 0
English 0
FileHandle 0
Test::More 0
DBD-SQLite-1.44
pathname: I/IS/ISHIGAKI/DBD-SQLite-1.44.tar.gz
provides:
DBD::SQLite 1.44
DBD::SQLite::VirtualTable 1.44
DBD::SQLite::VirtualTable::Cursor 1.44
DBD::SQLite::VirtualTable::FileContent undef
DBD::SQLite::VirtualTable::FileContent::Cursor undef
DBD::SQLite::VirtualTable::PerlData undef
DBD::SQLite::VirtualTable::PerlData::Cursor undef
DBD::SQLite::_WriteOnceHash 1.44
DBD::SQLite::db 1.44
DBD::SQLite::dr 1.44
requirements:
DBI 1.57
ExtUtils::MakeMaker 6.48
File::Spec 0.82
Test::Builder 0.86
Test::More 0.47
Tie::Hash 0
perl 5.006
DBI-1.632
pathname: T/TI/TIMB/DBI-1.632.tar.gz
provides:
Bundle::DBI 12.008696
DBD::DBM 0.08
DBD::DBM::Statement 0.08
DBD::DBM::Table 0.08
DBD::DBM::db 0.08
DBD::DBM::dr 0.08
DBD::DBM::st 0.08
DBD::ExampleP 12.014311
DBD::ExampleP::db 12.014311
DBD::ExampleP::dr 12.014311
DBD::ExampleP::st 12.014311
DBD::File 0.43
DBD::File::DataSource::File 0.43
DBD::File::DataSource::Stream 0.43
DBD::File::Statement 0.43
DBD::File::Table 0.43
DBD::File::TableSource::FileSystem 0.43
DBD::File::db 0.43
DBD::File::dr 0.43
DBD::File::st 0.43
DBD::Gofer 0.015327
DBD::Gofer::Policy::Base 0.010088
DBD::Gofer::Policy::classic 0.010088
DBD::Gofer::Policy::pedantic 0.010088
DBD::Gofer::Policy::rush 0.010088
DBD::Gofer::Transport::Base 0.014121
DBD::Gofer::Transport::corostream undef
DBD::Gofer::Transport::null 0.010088
DBD::Gofer::Transport::pipeone 0.010088
DBD::Gofer::Transport::stream 0.014599
DBD::Gofer::db 0.015327
DBD::Gofer::dr 0.015327
DBD::Gofer::st 0.015327
DBD::NullP 12.014715
DBD::NullP::db 12.014715
DBD::NullP::dr 12.014715
DBD::NullP::st 12.014715
DBD::Proxy 0.2004
DBD::Proxy::RPC::PlClient 0.2004
DBD::Proxy::db 0.2004
DBD::Proxy::dr 0.2004
DBD::Proxy::st 0.2004
DBD::Sponge 12.010003
DBD::Sponge::db 12.010003
DBD::Sponge::dr 12.010003
DBD::Sponge::st 12.010003
DBDI 12.015129
DBI 1.632
DBI::Const::GetInfo::ANSI 2.008697
DBI::Const::GetInfo::ODBC 2.011374
DBI::Const::GetInfoReturn 2.008697
DBI::Const::GetInfoType 2.008697
DBI::DBD 12.015129
DBI::DBD::Metadata 2.014214
DBI::DBD::SqlEngine 0.06
DBI::DBD::SqlEngine::DataSource 0.06
DBI::DBD::SqlEngine::Statement 0.06
DBI::DBD::SqlEngine::Table 0.06
DBI::DBD::SqlEngine::TableSource 0.06
DBI::DBD::SqlEngine::TieMeta 0.06
DBI::DBD::SqlEngine::TieTables 0.06
DBI::DBD::SqlEngine::db 0.06
DBI::DBD::SqlEngine::dr 0.06
DBI::DBD::SqlEngine::st 0.06
DBI::FAQ 1.014935
DBI::Gofer::Execute 0.014283
DBI::Gofer::Request 0.012537
DBI::Gofer::Response 0.011566
DBI::Gofer::Serializer::Base 0.009950
DBI::Gofer::Serializer::DataDumper 0.009950
DBI::Gofer::Serializer::Storable 0.015586
DBI::Gofer::Transport::Base 0.012537
DBI::Gofer::Transport::pipeone 0.012537
DBI::Gofer::Transport::stream 0.012537
DBI::Profile 2.015065
DBI::ProfileData 2.010008
DBI::ProfileDumper 2.015325
DBI::ProfileDumper::Apache 2.014121
DBI::ProfileSubs 0.009396
DBI::ProxyServer 0.3005
DBI::ProxyServer::db 0.3005
DBI::ProxyServer::dr 0.3005
DBI::ProxyServer::st 0.3005
DBI::SQL::Nano 1.015544
DBI::SQL::Nano::Statement_ 1.015544
DBI::SQL::Nano::Table_ 1.015544
DBI::Util::CacheMemory 0.010315
DBI::Util::_accessor 0.009479
DBI::common 1.632
requirements:
ExtUtils::MakeMaker 6.48
Test::Simple 0.90
perl 5.008
DBIx-Class-0.082810
pathname: R/RI/RIBASUSHI/DBIx-Class-0.082810.tar.gz
provides:
DBIx::Class 0.082810
DBIx::Class::AccessorGroup undef
DBIx::Class::Admin undef
DBIx::Class::CDBICompat undef
DBIx::Class::Core undef
DBIx::Class::Cursor undef
DBIx::Class::DB undef
DBIx::Class::Exception undef
DBIx::Class::FilterColumn undef
DBIx::Class::InflateColumn undef
DBIx::Class::InflateColumn::DateTime undef
DBIx::Class::InflateColumn::File undef
DBIx::Class::Optional::Dependencies undef
DBIx::Class::Ordered undef
DBIx::Class::PK undef
DBIx::Class::PK::Auto undef
DBIx::Class::Relationship undef
DBIx::Class::Relationship::Base undef
DBIx::Class::ResultClass::HashRefInflator undef
DBIx::Class::ResultSet undef
DBIx::Class::ResultSetColumn undef
DBIx::Class::ResultSetManager undef
DBIx::Class::ResultSource undef
DBIx::Class::ResultSource::Table undef
DBIx::Class::ResultSource::View undef
DBIx::Class::ResultSourceHandle undef
DBIx::Class::ResultSourceProxy::Table undef
DBIx::Class::Row undef
DBIx::Class::SQLMaker undef
DBIx::Class::SQLMaker::LimitDialects undef
DBIx::Class::SQLMaker::OracleJoins undef
DBIx::Class::Schema undef
DBIx::Class::Schema::Versioned undef
DBIx::Class::Serialize::Storable undef
DBIx::Class::StartupCheck undef
DBIx::Class::Storage undef
DBIx::Class::Storage::DBI undef
DBIx::Class::Storage::DBI::ACCESS undef
DBIx::Class::Storage::DBI::ADO undef
DBIx::Class::Storage::DBI::ADO::MS_Jet undef
DBIx::Class::Storage::DBI::ADO::MS_Jet::Cursor undef
DBIx::Class::Storage::DBI::ADO::Microsoft_SQL_Server undef
DBIx::Class::Storage::DBI::ADO::Microsoft_SQL_Server::Cursor undef
DBIx::Class::Storage::DBI::AutoCast undef
DBIx::Class::Storage::DBI::Cursor undef
DBIx::Class::Storage::DBI::DB2 undef
DBIx::Class::Storage::DBI::Firebird undef
DBIx::Class::Storage::DBI::Firebird::Common undef
DBIx::Class::Storage::DBI::IdentityInsert undef
DBIx::Class::Storage::DBI::Informix undef
DBIx::Class::Storage::DBI::InterBase undef
DBIx::Class::Storage::DBI::MSSQL undef
DBIx::Class::Storage::DBI::NoBindVars undef
DBIx::Class::Storage::DBI::ODBC undef
DBIx::Class::Storage::DBI::ODBC::ACCESS undef
DBIx::Class::Storage::DBI::ODBC::DB2_400_SQL undef
DBIx::Class::Storage::DBI::ODBC::Firebird undef
DBIx::Class::Storage::DBI::ODBC::Microsoft_SQL_Server undef
DBIx::Class::Storage::DBI::ODBC::SQL_Anywhere undef
DBIx::Class::Storage::DBI::Oracle undef
DBIx::Class::Storage::DBI::Oracle::Generic undef
DBIx::Class::Storage::DBI::Oracle::WhereJoins undef
DBIx::Class::Storage::DBI::Pg undef
DBIx::Class::Storage::DBI::Replicated undef
DBIx::Class::Storage::DBI::Replicated::Balancer undef
DBIx::Class::Storage::DBI::Replicated::Balancer::First undef
DBIx::Class::Storage::DBI::Replicated::Balancer::Random undef
DBIx::Class::Storage::DBI::Replicated::Pool undef
DBIx::Class::Storage::DBI::Replicated::Replicant undef
DBIx::Class::Storage::DBI::Replicated::WithDSN undef
DBIx::Class::Storage::DBI::SQLAnywhere undef
DBIx::Class::Storage::DBI::SQLAnywhere::Cursor undef
DBIx::Class::Storage::DBI::SQLite undef
DBIx::Class::Storage::DBI::Sybase undef
DBIx::Class::Storage::DBI::Sybase::ASE undef
DBIx::Class::Storage::DBI::Sybase::ASE::NoBindVars undef
DBIx::Class::Storage::DBI::Sybase::FreeTDS undef
DBIx::Class::Storage::DBI::Sybase::MSSQL undef
DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server undef
DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server::NoBindVars undef
DBIx::Class::Storage::DBI::UniqueIdentifier undef
DBIx::Class::Storage::DBI::mysql undef
DBIx::Class::Storage::Statistics undef
DBIx::Class::Storage::TxnScopeGuard undef
DBIx::Class::UTF8Columns undef
SQL::Translator::Parser::DBIx::Class 1.10
SQL::Translator::Producer::DBIx::Class::File 0.1
requirements:
Class::Accessor::Grouped 0.10012
Class::C3::Componentised 1.0009
Class::Inspector 1.24
Config::Any 0.20
Context::Preserve 0.01
DBD::SQLite 1.29
DBI 1.57
Data::Dumper::Concise 2.020
Data::Page 2.00
Devel::GlobalDestruction 0.09
ExtUtils::MakeMaker 6.59
File::Temp 0.22
Hash::Merge 0.12
List::Util 1.16
MRO::Compat 0.12
Module::Find 0.07
Moo 1.006001
Package::Stash 0.28
Path::Class 0.18
SQL::Abstract 1.81
Scope::Guard 0.03
Sub::Name 0.04
Test::Deep 0.101
Test::Exception 0.31
Test::More 0.94
Test::Warn 0.21
Text::Balanced 2.00
Try::Tiny 0.07
namespace::clean 0.24
perl 5.008001
DBIx-Class-DeploymentHandler-0.002212
pathname: F/FR/FREW/DBIx-Class-DeploymentHandler-0.002212.tar.gz
provides:
DBIx::Class::DeploymentHandler 0.002212
DBIx::Class::DeploymentHandler::Dad 0.002212
DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator 0.002212
DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator::Deprecated 0.002212
DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator::ScriptHelpers 0.002212
DBIx::Class::DeploymentHandler::Deprecated 0.002212
DBIx::Class::DeploymentHandler::HandlesDeploy 0.002212
DBIx::Class::DeploymentHandler::HandlesVersionStorage 0.002212
DBIx::Class::DeploymentHandler::HandlesVersioning 0.002212
DBIx::Class::DeploymentHandler::LogImporter 0.002212
DBIx::Class::DeploymentHandler::LogRouter 0.002212
DBIx::Class::DeploymentHandler::Logger 0.002212
DBIx::Class::DeploymentHandler::Types 0.002212
DBIx::Class::DeploymentHandler::VersionHandler::DatabaseToSchemaVersions 0.002212
DBIx::Class::DeploymentHandler::VersionHandler::ExplicitVersions 0.002212
DBIx::Class::DeploymentHandler::VersionHandler::Monotonic 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Deprecated 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::Component 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::VersionResult 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Deprecated::VersionResultSet 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Standard 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Standard::Component 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResult 0.002212
DBIx::Class::DeploymentHandler::VersionStorage::Standard::VersionResultSet 0.002212
DBIx::Class::DeploymentHandler::WithApplicatorDumple 0.002212
DBIx::Class::DeploymentHandler::WithReasonableDefaults 0.002212
requirements:
Carp 0
Carp::Clan 0
Context::Preserve 0.01
DBIx::Class 0.08121
ExtUtils::MakeMaker 0
Log::Contextual 0.005005
Moo 1.003
Moose 1
MooseX::Role::Parameterized 0.18
Path::Class 0.26
SQL::Translator 0.11005
Sub::Exporter::Progressive 0
Text::Brew 0.02
Try::Tiny 0
autodie 0
namespace::autoclean 0
parent 0.225
Data-Dump-1.22
pathname: G/GA/GAAS/Data-Dump-1.22.tar.gz
provides:
Data::Dump 1.22
Data::Dump::FilterContext undef
Data::Dump::Filtered undef
Data::Dump::Trace 0.02
Data::Dump::Trace::Call 0.02
Data::Dump::Trace::Wrapper 0.02
requirements:
ExtUtils::MakeMaker 0
Symbol 0
Test 0
perl 5.006
Data-Dumper-Concise-2.022
pathname: F/FR/FREW/Data-Dumper-Concise-2.022.tar.gz
provides:
Data::Dumper::Concise 2.022
Data::Dumper::Concise::Sugar undef
Devel::Dwarn undef
requirements:
ExtUtils::MakeMaker 6.59
perl 5.006
Data-OptList-0.109
pathname: R/RJ/RJBS/Data-OptList-0.109.tar.gz
provides:
Data::OptList 0.109
requirements:
ExtUtils::MakeMaker 6.30
List::Util 0
Params::Util 0
Sub::Install 0.921
strict 0
warnings 0
Data-Page-2.02
pathname: L/LB/LBROCARD/Data-Page-2.02.tar.gz
provides:
Data::Page 2.02
requirements:
Class::Accessor::Chained::Fast 0
Module::Build 0.35
Test::Exception 0
Test::More 0
Data-Types-0.09
pathname: D/DW/DWHEELER/Data-Types-0.09.tar.gz
provides:
Data::Types 0.09
requirements:
Module::Build 0.2701
Test::More 0.17
DateTime-1.12
pathname: D/DR/DROLSKY/DateTime-1.12.tar.gz
provides:
DateTime 1.12
DateTime::Duration 1.12
DateTime::Helpers 1.12
DateTime::Infinite 1.12
DateTime::Infinite::Future 1.12
DateTime::Infinite::Past 1.12
DateTime::LeapSecond 1.12
requirements:
Carp 0
DateTime::Locale 0.41
DateTime::TimeZone 1.74
ExtUtils::CBuilder 0
Module::Build 0.28
POSIX 0
Params::Validate 0.76
Scalar::Util 0
Try::Tiny 0
XSLoader 0
base 0
constant 0
integer 0
overload 0
perl 5.008001
strict 0
vars 0
warnings 0
warnings::register 0
DateTime-Locale-0.45
pathname: D/DR/DROLSKY/DateTime-Locale-0.45.tar.gz
provides:
DateTime::Locale 0.45
DateTime::Locale::Base undef
DateTime::Locale::Catalog undef
DateTime::Locale::aa undef
DateTime::Locale::aa_DJ undef
DateTime::Locale::aa_ER undef
DateTime::Locale::aa_ER_SAAHO undef
DateTime::Locale::aa_ET undef
DateTime::Locale::af undef
DateTime::Locale::af_NA undef
DateTime::Locale::af_ZA undef
DateTime::Locale::ak undef
DateTime::Locale::ak_GH undef
DateTime::Locale::am undef
DateTime::Locale::am_ET undef
DateTime::Locale::ar undef
DateTime::Locale::ar_AE undef
DateTime::Locale::ar_BH undef
DateTime::Locale::ar_DZ undef
DateTime::Locale::ar_EG undef
DateTime::Locale::ar_IQ undef
DateTime::Locale::ar_JO undef
DateTime::Locale::ar_KW undef
DateTime::Locale::ar_LB undef
DateTime::Locale::ar_LY undef
DateTime::Locale::ar_MA undef
DateTime::Locale::ar_OM undef
DateTime::Locale::ar_QA undef
DateTime::Locale::ar_SA undef
DateTime::Locale::ar_SD undef
DateTime::Locale::ar_SY undef
DateTime::Locale::ar_TN undef
DateTime::Locale::ar_YE undef
DateTime::Locale::as undef
DateTime::Locale::as_IN undef
DateTime::Locale::az undef
DateTime::Locale::az_AZ undef
DateTime::Locale::az_Cyrl undef
DateTime::Locale::az_Cyrl_AZ undef
DateTime::Locale::az_Latn undef
DateTime::Locale::az_Latn_AZ undef
DateTime::Locale::be undef
DateTime::Locale::be_BY undef
DateTime::Locale::bg undef
DateTime::Locale::bg_BG undef
DateTime::Locale::bn undef
DateTime::Locale::bn_BD undef
DateTime::Locale::bn_IN undef
DateTime::Locale::bo undef
DateTime::Locale::bo_CN undef
DateTime::Locale::bo_IN undef
DateTime::Locale::bs undef
DateTime::Locale::bs_BA undef
DateTime::Locale::byn undef
DateTime::Locale::byn_ER undef
DateTime::Locale::ca undef
DateTime::Locale::ca_ES undef
DateTime::Locale::cch undef
DateTime::Locale::cch_NG undef
DateTime::Locale::cop undef
DateTime::Locale::cs undef
DateTime::Locale::cs_CZ undef
DateTime::Locale::cy undef
DateTime::Locale::cy_GB undef
DateTime::Locale::da undef
DateTime::Locale::da_DK undef
DateTime::Locale::de undef
DateTime::Locale::de_AT undef
DateTime::Locale::de_BE undef
DateTime::Locale::de_CH undef
DateTime::Locale::de_DE undef
DateTime::Locale::de_LI undef
DateTime::Locale::de_LU undef
DateTime::Locale::dv undef
DateTime::Locale::dv_MV undef
DateTime::Locale::dz undef
DateTime::Locale::dz_BT undef
DateTime::Locale::ee undef
DateTime::Locale::ee_GH undef
DateTime::Locale::ee_TG undef
DateTime::Locale::el undef
DateTime::Locale::el_CY undef
DateTime::Locale::el_GR undef
DateTime::Locale::el_POLYTON undef
DateTime::Locale::en undef
DateTime::Locale::en_AS undef
DateTime::Locale::en_AU undef
DateTime::Locale::en_BE undef
DateTime::Locale::en_BW undef
DateTime::Locale::en_BZ undef
DateTime::Locale::en_CA undef
DateTime::Locale::en_Dsrt undef
DateTime::Locale::en_Dsrt_US undef
DateTime::Locale::en_GB undef
DateTime::Locale::en_GU undef
DateTime::Locale::en_HK undef
DateTime::Locale::en_IE undef
DateTime::Locale::en_IN undef
DateTime::Locale::en_JM undef
DateTime::Locale::en_MH undef
DateTime::Locale::en_MP undef
DateTime::Locale::en_MT undef
DateTime::Locale::en_NA undef
DateTime::Locale::en_NZ undef
DateTime::Locale::en_PH undef
DateTime::Locale::en_PK undef
DateTime::Locale::en_SG undef
DateTime::Locale::en_Shaw undef
DateTime::Locale::en_TT undef
DateTime::Locale::en_UM undef
DateTime::Locale::en_US undef
DateTime::Locale::en_US_POSIX undef
DateTime::Locale::en_VI undef
DateTime::Locale::en_ZA undef
DateTime::Locale::en_ZW undef
DateTime::Locale::eo undef
DateTime::Locale::es undef
DateTime::Locale::es_AR undef
DateTime::Locale::es_BO undef
DateTime::Locale::es_CL undef
DateTime::Locale::es_CO undef
DateTime::Locale::es_CR undef
DateTime::Locale::es_DO undef
DateTime::Locale::es_EC undef
DateTime::Locale::es_ES undef
DateTime::Locale::es_GT undef
DateTime::Locale::es_HN undef
DateTime::Locale::es_MX undef
DateTime::Locale::es_NI undef
DateTime::Locale::es_PA undef
DateTime::Locale::es_PE undef
DateTime::Locale::es_PR undef
DateTime::Locale::es_PY undef
DateTime::Locale::es_SV undef
DateTime::Locale::es_US undef
DateTime::Locale::es_UY undef
DateTime::Locale::es_VE undef
DateTime::Locale::et undef
DateTime::Locale::et_EE undef
DateTime::Locale::eu undef
DateTime::Locale::eu_ES undef
DateTime::Locale::fa undef
DateTime::Locale::fa_AF undef
DateTime::Locale::fa_IR undef
DateTime::Locale::fi undef
DateTime::Locale::fi_FI undef
DateTime::Locale::fil undef
DateTime::Locale::fil_PH undef
DateTime::Locale::fo undef
DateTime::Locale::fo_FO undef
DateTime::Locale::fr undef
DateTime::Locale::fr_BE undef
DateTime::Locale::fr_CA undef
DateTime::Locale::fr_CH undef
DateTime::Locale::fr_FR undef
DateTime::Locale::fr_LU undef
DateTime::Locale::fr_MC undef
DateTime::Locale::fr_SN undef
DateTime::Locale::fur undef
DateTime::Locale::fur_IT undef
DateTime::Locale::ga undef
DateTime::Locale::ga_IE undef
DateTime::Locale::gaa undef
DateTime::Locale::gaa_GH undef
DateTime::Locale::gez undef
DateTime::Locale::gez_ER undef
DateTime::Locale::gez_ET undef
DateTime::Locale::gl undef
DateTime::Locale::gl_ES undef
DateTime::Locale::gsw undef
DateTime::Locale::gsw_CH undef
DateTime::Locale::gu undef
DateTime::Locale::gu_IN undef
DateTime::Locale::gv undef
DateTime::Locale::gv_GB undef
DateTime::Locale::ha undef
DateTime::Locale::ha_Arab undef
DateTime::Locale::ha_Arab_NG undef
DateTime::Locale::ha_Arab_SD undef
DateTime::Locale::ha_GH undef
DateTime::Locale::ha_Latn undef
DateTime::Locale::ha_Latn_GH undef
DateTime::Locale::ha_Latn_NE undef
DateTime::Locale::ha_Latn_NG undef
DateTime::Locale::ha_NE undef
DateTime::Locale::ha_NG undef
DateTime::Locale::ha_SD undef
DateTime::Locale::haw undef