-
Notifications
You must be signed in to change notification settings - Fork 29
/
cpanfile.snapshot
1730 lines (1730 loc) · 45.6 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
Algorithm-Diff-1.1903
pathname: T/TY/TYEMQ/Algorithm-Diff-1.1903.tar.gz
provides:
Algorithm::Diff 1.1903
Algorithm::Diff::_impl 1.1903
requirements:
ExtUtils::MakeMaker 0
Apache-LogFormat-Compiler-0.32
pathname: K/KA/KAZEBURO/Apache-LogFormat-Compiler-0.32.tar.gz
provides:
Apache::LogFormat::Compiler 0.32
requirements:
CPAN::Meta 0
CPAN::Meta::Prereqs 0
ExtUtils::CBuilder 0
Module::Build 0.38
POSIX 0
POSIX::strftime::Compiler 0.30
Time::Local 0
perl 5.008001
App-Cmd-0.326
pathname: R/RJ/RJBS/App-Cmd-0.326.tar.gz
provides:
App::Cmd 0.326
App::Cmd::ArgProcessor 0.326
App::Cmd::Command 0.326
App::Cmd::Command::commands 0.326
App::Cmd::Command::help 0.326
App::Cmd::Command::version 0.326
App::Cmd::Plugin 0.326
App::Cmd::Setup 0.326
App::Cmd::Simple 0.326
App::Cmd::Subdispatch 0.326
App::Cmd::Subdispatch::DashedStyle 0.326
App::Cmd::Tester 0.326
App::Cmd::Tester::CaptureExternal 0.326
App::Cmd::Tester::Exited 0.326
App::Cmd::Tester::Result 0.326
Test::BrokenCmd undef
Test::BrokenCmd::Command undef
Test::IgnoreCommand undef
Test::IgnoreCommand::Command undef
Test::MyCmd 0.123
Test::MyCmd2 undef
Test::MyCmd2::Command::foo undef
Test::MyCmd2::Command::foo::bar undef
Test::MyCmd::Command::exit undef
Test::MyCmd::Command::frobulate undef
Test::MyCmd::Command::hello undef
Test::MyCmd::Command::justusage undef
Test::MyCmd::Command::stock undef
Test::MyCmdAbbrev undef
Test::MyCmdAbbrev::Command::bar undef
Test::MyCmdAbbrev::Command::baz undef
Test::MyCmdAbbrev::Command::foo undef
Test::MySimple undef
Test::WSNCC undef
Test::WSNCC::Command::blort undef
Test::WSOF undef
Test::WSOF::Command::poot undef
Test::WithCallback undef
Test::WithCallback::Command::lol undef
Test::WithSetup undef
Test::WithSetup::Command undef
Test::WithSetup::Command::alfie undef
Test::WithSetup::Command::bertie undef
Test::XyzzyPlugin undef
requirements:
Capture::Tiny 0.13
Carp 0
Class::Load 0.06
Data::OptList 0
ExtUtils::MakeMaker 0
File::Basename 0
Getopt::Long 2.39
Getopt::Long::Descriptive 0.084
IO::TieCombine 0
Module::Pluggable::Object 0
String::RewritePrefix 0
Sub::Exporter 0
Sub::Exporter::Util 0
Sub::Install 0
Text::Abbrev 0
constant 0
parent 0
perl 5.006
strict 0
warnings 0
AppConfig-1.66
pathname: A/AB/ABW/AppConfig-1.66.tar.gz
provides:
AppConfig 1.66
AppConfig::Args 1.65
AppConfig::CGI 1.65
AppConfig::File 1.65
AppConfig::Getopt 1.65
AppConfig::State 1.65
AppConfig::Sys 1.65
requirements:
ExtUtils::MakeMaker 0
Test::More 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
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
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-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
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
Dancer2-0.158000
pathname: X/XS/XSAWYERX/Dancer2-0.158000.tar.gz
provides:
Dancer2 0.158000
Dancer2::CLI 0.158000
Dancer2::CLI::Command::gen 0.158000
Dancer2::CLI::Command::version 0.158000
Dancer2::Core 0.158000
Dancer2::Core::App 0.158000
Dancer2::Core::Cookie 0.158000
Dancer2::Core::DSL 0.158000
Dancer2::Core::Dispatcher 0.158000
Dancer2::Core::Error 0.158000
Dancer2::Core::Factory 0.158000
Dancer2::Core::HTTP 0.158000
Dancer2::Core::Hook 0.158000
Dancer2::Core::MIME 0.158000
Dancer2::Core::Request 0.158000
Dancer2::Core::Request::Upload 0.158000
Dancer2::Core::Response 0.158000
Dancer2::Core::Role::ConfigReader 0.158000
Dancer2::Core::Role::DSL 0.158000
Dancer2::Core::Role::Engine 0.158000
Dancer2::Core::Role::Handler 0.158000
Dancer2::Core::Role::HasLocation 0.158000
Dancer2::Core::Role::Headers 0.158000
Dancer2::Core::Role::Hookable 0.158000
Dancer2::Core::Role::Logger 0.158000
Dancer2::Core::Role::Serializer 0.158000
Dancer2::Core::Role::SessionFactory 0.158000
Dancer2::Core::Role::SessionFactory::File 0.158000
Dancer2::Core::Role::StandardResponses 0.158000
Dancer2::Core::Role::Template 0.158000
Dancer2::Core::Route 0.158000
Dancer2::Core::Runner 0.158000
Dancer2::Core::Session 0.158000
Dancer2::Core::Time 0.158000
Dancer2::Core::Types 0.158000
Dancer2::FileUtils 0.158000
Dancer2::Handler::AutoPage 0.158000
Dancer2::Handler::File 0.158000
Dancer2::Logger::Capture 0.158000
Dancer2::Logger::Capture::Trap 0.158000
Dancer2::Logger::Console 0.158000
Dancer2::Logger::Diag 0.158000
Dancer2::Logger::File 0.158000
Dancer2::Logger::Note 0.158000
Dancer2::Logger::Null 0.158000
Dancer2::Plugin 0.158000
Dancer2::Serializer::Dumper 0.158000
Dancer2::Serializer::JSON 0.158000
Dancer2::Serializer::Mutable 0.158000
Dancer2::Serializer::YAML 0.158000
Dancer2::Session::Simple 0.158000
Dancer2::Session::YAML 0.158000
Dancer2::Template::Implementation::ForkedTiny 0.158000
Dancer2::Template::Simple 0.158000
Dancer2::Template::TemplateToolkit 0.158000
Dancer2::Template::Tiny 0.158000
Dancer2::Test 0.158000
requirements:
App::Cmd::Setup 0
Carp 0
Class::Load 0
Config::Any 0
Cwd 0
Data::Dumper 0
Digest::SHA 0
Encode 0
Exporter 5.57
ExtUtils::MakeMaker 0
Fcntl 0
File::Basename 0
File::Copy 0
File::Find 0
File::Path 0
File::ShareDir 1.00
File::ShareDir::Install 0.06
File::Spec 0
File::Spec::Functions 0
File::Temp 0.22
HTTP::Body 0
HTTP::Date 0
HTTP::Headers 0
HTTP::Server::PSGI 0
HTTP::Tiny 0
Hash::Merge::Simple 0
IO::File 0
Import::Into 0
JSON 0
List::Util 0
MIME::Base64 3.13
MIME::Types 0
Module::Build 0.3601
Module::Runtime 0
Moo 1.003000
Moo::Role 0
MooX::Types::MooseLike 0.16
MooX::Types::MooseLike::Base 0
POSIX 0
Plack 1.0029
Plack::Builder 0
Plack::Middleware::Conditional 0
Plack::Middleware::ContentLength 0
Plack::Middleware::FixMissingBodyInRedirect 0
Plack::Middleware::Head 0
Plack::Middleware::RemoveRedundantBody 0
Plack::Middleware::Static 0
Plack::Request 0
Pod::Simple::Search 0
Pod::Simple::SimpleTree 0
Return::MultiLevel 0
Role::Tiny 1.003000
Safe::Isa 0
Scalar::Util 0
Sub::Quote 0
Template 0
Template::Tiny 0
Test::Builder 0
Test::More 0.92
Try::Tiny 0
URI 0
URI::Escape 0
YAML 0
overload 0
parent 0
perl 5.006
strict 0
warnings 0
Data-Munge-0.093
pathname: M/MA/MAUKE/Data-Munge-0.093.tar.gz
provides:
Data::Munge 0.093
requirements:
Exporter 0
ExtUtils::MakeMaker 6.48
base 0
strict 0
warnings 0
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
Devel-GlobalDestruction-0.13
pathname: H/HA/HAARG/Devel-GlobalDestruction-0.13.tar.gz
provides:
Devel::GlobalDestruction 0.13
requirements:
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 0
Sub::Exporter::Progressive 0.001011
perl 5.006
Devel-StackTrace-2.00
pathname: D/DR/DROLSKY/Devel-StackTrace-2.00.tar.gz
provides:
Devel::StackTrace 2.00
Devel::StackTrace::Frame 2.00
requirements:
ExtUtils::MakeMaker 0
File::Spec 0
Scalar::Util 0
overload 0
perl 5.006
strict 0
warnings 0
Devel-StackTrace-AsHTML-0.14
pathname: M/MI/MIYAGAWA/Devel-StackTrace-AsHTML-0.14.tar.gz
provides:
Devel::StackTrace::AsHTML 0.14
requirements:
Devel::StackTrace 0
ExtUtils::MakeMaker 6.59
Filter::Util::Call 0
Test::More 0
perl 5.008001
Dist-CheckConflicts-0.11
pathname: D/DO/DOY/Dist-CheckConflicts-0.11.tar.gz
provides:
Dist::CheckConflicts 0.11
requirements:
Carp 0
Exporter 0
ExtUtils::MakeMaker 6.30
Module::Runtime 0.009
base 0
strict 0
warnings 0
Encode-Locale-1.03
pathname: G/GA/GAAS/Encode-Locale-1.03.tar.gz
provides:
Encode::Locale 1.03
requirements:
Encode 2
Encode::Alias 0
ExtUtils::MakeMaker 0
Test 0
perl 5.008
Exception-Class-1.39
pathname: D/DR/DROLSKY/Exception-Class-1.39.tar.gz
provides:
Exception::Class 1.39
Exception::Class::Base 1.39
requirements:
Class::Data::Inheritable 0.02
Devel::StackTrace 2.00
ExtUtils::MakeMaker 0
Scalar::Util 0
base 0
overload 0
perl 5.008001
strict 0
warnings 0
ExtUtils-Config-0.008
pathname: L/LE/LEONT/ExtUtils-Config-0.008.tar.gz
provides:
ExtUtils::Config 0.008
requirements:
Data::Dumper 0
ExtUtils::MakeMaker 6.30
strict 0
warnings 0
ExtUtils-Depends-0.403
pathname: X/XA/XAOC/ExtUtils-Depends-0.403.tar.gz
provides:
ExtUtils::Depends 0.403
requirements:
Data::Dumper 0
ExtUtils::MakeMaker 0
File::Spec 0
IO::File 0
perl 5.006
ExtUtils-Helpers-0.022
pathname: L/LE/LEONT/ExtUtils-Helpers-0.022.tar.gz
provides:
ExtUtils::Helpers 0.022
ExtUtils::Helpers::Unix 0.022
ExtUtils::Helpers::VMS 0.022
ExtUtils::Helpers::Windows 0.022
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 6.30
File::Basename 0
File::Copy 0
File::Spec::Functions 0
Module::Load 0
Text::ParseWords 3.24
strict 0
warnings 0
ExtUtils-InstallPaths-0.010
pathname: L/LE/LEONT/ExtUtils-InstallPaths-0.010.tar.gz
provides:
ExtUtils::InstallPaths 0.010
requirements:
Carp 0
ExtUtils::Config 0.002
ExtUtils::MakeMaker 6.30
File::Spec 0
strict 0
warnings 0
File-Listing-6.04
pathname: G/GA/GAAS/File-Listing-6.04.tar.gz
provides:
File::Listing 6.04
File::Listing::apache 6.04
File::Listing::dosftp 6.04
File::Listing::netware 6.04
File::Listing::unix 6.04
File::Listing::vms 6.04
requirements:
ExtUtils::MakeMaker 0
HTTP::Date 6
perl 5.006002
File-ShareDir-1.102
pathname: R/RE/REHSACK/File-ShareDir-1.102.tar.gz
provides:
File::ShareDir 1.102
requirements:
Carp 0
Class::Inspector 1.12
ExtUtils::MakeMaker 0
File::ShareDir::Install 0.03
File::Spec 0.80
perl 5.008001
warnings 0
File-ShareDir-Install-0.10
pathname: G/GW/GWYN/File-ShareDir-Install-0.10.tar.gz
provides:
File::ShareDir::Install 0.10
requirements:
ExtUtils::MakeMaker 6.11
File::Spec 0
IO::Dir 0
Filesys-Notify-Simple-0.12
pathname: M/MI/MIYAGAWA/Filesys-Notify-Simple-0.12.tar.gz
provides:
Filesys::Notify::Simple 0.12
requirements:
ExtUtils::MakeMaker 6.30
Getopt-Long-Descriptive-0.098
pathname: R/RJ/RJBS/Getopt-Long-Descriptive-0.098.tar.gz
provides:
Getopt::Long::Descriptive 0.098
Getopt::Long::Descriptive::Opts 0.098
Getopt::Long::Descriptive::Usage 0.098
requirements:
Carp 0
ExtUtils::MakeMaker 0
File::Basename 0
Getopt::Long 2.33
List::Util 0
Params::Validate 0.97
Scalar::Util 0
Sub::Exporter 0.972
Sub::Exporter::Util 0
overload 0
strict 0
warnings 0
HTML-Parser-3.71
pathname: G/GA/GAAS/HTML-Parser-3.71.tar.gz
provides:
HTML::Entities 3.69
HTML::Filter 3.57
HTML::HeadParser 3.71
HTML::LinkExtor 3.69
HTML::Parser 3.71
HTML::PullParser 3.57
HTML::TokeParser 3.69
requirements:
ExtUtils::MakeMaker 0
HTML::Tagset 3
XSLoader 0
perl 5.008
HTML-Tagset-3.20
pathname: P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz
provides:
HTML::Tagset 3.20
requirements:
ExtUtils::MakeMaker 0
HTTP-Body-1.19
pathname: G/GE/GETTY/HTTP-Body-1.19.tar.gz
provides:
HTTP::Body 1.19
HTTP::Body::MultiPart 1.19
HTTP::Body::OctetStream 1.19
HTTP::Body::UrlEncoded 1.19
HTTP::Body::XForms 1.19
HTTP::Body::XFormsMultipart 1.19
PAML undef
requirements:
Carp 0
Digest::MD5 0
ExtUtils::MakeMaker 6.30
File::Temp 0.14
HTTP::Headers 0
IO::File 1.14
HTTP-Cookies-6.01
pathname: G/GA/GAAS/HTTP-Cookies-6.01.tar.gz
provides:
HTTP::Cookies 6.01
HTTP::Cookies::Microsoft 6.00
HTTP::Cookies::Netscape 6.00
requirements:
ExtUtils::MakeMaker 0
HTTP::Date 6
HTTP::Headers::Util 6
Time::Local 0
perl 5.008001
HTTP-Daemon-6.01
pathname: G/GA/GAAS/HTTP-Daemon-6.01.tar.gz
provides:
HTTP::Daemon 6.01
HTTP::Daemon::ClientConn 6.01
requirements:
ExtUtils::MakeMaker 0
HTTP::Date 6
HTTP::Request 6
HTTP::Response 6
HTTP::Status 6
IO::Socket 0
LWP::MediaTypes 6
Sys::Hostname 0
perl 5.008001
HTTP-Date-6.02
pathname: G/GA/GAAS/HTTP-Date-6.02.tar.gz
provides:
HTTP::Date 6.02
requirements:
ExtUtils::MakeMaker 0
Time::Local 0
perl 5.006002
HTTP-Message-6.06
pathname: G/GA/GAAS/HTTP-Message-6.06.tar.gz
provides:
HTTP::Config 6.00
HTTP::Headers 6.05
HTTP::Headers::Auth 6.00
HTTP::Headers::ETag 6.00
HTTP::Headers::Util 6.03
HTTP::Message 6.06
HTTP::Request 6.00
HTTP::Request::Common 6.04
HTTP::Response 6.04
HTTP::Status 6.03
requirements:
Compress::Raw::Zlib 0
Encode 2.21
Encode::Locale 1
ExtUtils::MakeMaker 0
HTTP::Date 6
IO::Compress::Bzip2 2.021
IO::Compress::Deflate 0
IO::Compress::Gzip 0
IO::HTML 0
IO::Uncompress::Bunzip2 2.021
IO::Uncompress::Gunzip 0
IO::Uncompress::Inflate 0
IO::Uncompress::RawInflate 0
LWP::MediaTypes 6
MIME::Base64 2.1
MIME::QuotedPrint 0
URI 1.10
perl 5.008001
HTTP-Negotiate-6.01
pathname: G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz
provides:
HTTP::Negotiate 6.01
requirements:
ExtUtils::MakeMaker 0
HTTP::Headers 6
perl 5.008001
HTTP-Tiny-0.053
pathname: D/DA/DAGOLDEN/HTTP-Tiny-0.053.tar.gz
provides:
HTTP::Tiny 0.053
requirements:
Carp 0
ExtUtils::MakeMaker 6.17
Fcntl 0
IO::Socket 0
MIME::Base64 0
Time::Local 0
bytes 0
perl 5.006
strict 0
warnings 0
Hash-Merge-Simple-0.051
pathname: R/RO/ROKR/Hash-Merge-Simple-0.051.tar.gz
provides:
Hash::Merge::Simple 0.051
requirements:
Clone 0
ExtUtils::MakeMaker 6.31
Storable 0
Test::Most 0
Hash-MultiValue-0.15
pathname: M/MI/MIYAGAWA/Hash-MultiValue-0.15.tar.gz
provides:
Hash::MultiValue 0.15
requirements:
ExtUtils::MakeMaker 6.30
IO-HTML-1.001
pathname: C/CJ/CJM/IO-HTML-1.001.tar.gz
provides:
IO::HTML 1.001
requirements:
Carp 0
Encode 2.10
Exporter 5.57
ExtUtils::MakeMaker 6.30
IO-TieCombine-1.004
pathname: R/RJ/RJBS/IO-TieCombine-1.004.tar.gz
provides:
IO::TieCombine 1.004
IO::TieCombine::Handle 1.004
IO::TieCombine::Scalar 1.004
requirements:
Carp 0
ExtUtils::MakeMaker 6.30
Symbol 0
strict 0
warnings 0
Import-Into-1.002004
pathname: E/ET/ETHER/Import-Into-1.002004.tar.gz
provides:
Import::Into 1.002004
requirements:
ExtUtils::MakeMaker 0
Module::Runtime 0
perl 5.006
strict 0
warnings 0
JSON-2.90
pathname: M/MA/MAKAMAKA/JSON-2.90.tar.gz
provides:
JSON 2.90
JSON::Backend::PP 2.90
JSON::Boolean 2.90
requirements:
ExtUtils::MakeMaker 0
Test::More 0
LWP-MediaTypes-6.02
pathname: G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz
provides:
LWP::MediaTypes 6.02
requirements:
ExtUtils::MakeMaker 0
perl 5.006002
Lexical-SealRequireHints-0.007
pathname: Z/ZE/ZEFRAM/Lexical-SealRequireHints-0.007.tar.gz
provides:
Lexical::SealRequireHints 0.007
requirements:
Module::Build 0
Test::More 0
perl 5.006
strict 0
warnings 0
MIME-Types-2.09
pathname: M/MA/MARKOV/MIME-Types-2.09.tar.gz
provides:
MIME::Type 2.09
MIME::Types 2.09
MojoX::MIME::Types 2.09
requirements:
ExtUtils::MakeMaker 0
File::Basename 0
File::Spec 0
List::Util 0
Test::More 0.47
Module-Build-Tiny-0.039
pathname: L/LE/LEONT/Module-Build-Tiny-0.039.tar.gz
provides:
Module::Build::Tiny 0.039
requirements:
CPAN::Meta 0
DynaLoader 0
Exporter 5.57
ExtUtils::CBuilder 0
ExtUtils::Config 0.003
ExtUtils::Helpers 0.020
ExtUtils::Install 0
ExtUtils::InstallPaths 0.002
ExtUtils::ParseXS 0
File::Basename 0
File::Find 0
File::Path 0
File::Spec::Functions 0
Getopt::Long 2.36
JSON::PP 2
Pod::Man 0
TAP::Harness::Env 0
perl 5.006
strict 0
warnings 0
Module-Implementation-0.09
pathname: D/DR/DROLSKY/Module-Implementation-0.09.tar.gz
provides:
Module::Implementation 0.09
requirements:
Carp 0
ExtUtils::MakeMaker 0
Module::Runtime 0.012
Try::Tiny 0
strict 0
warnings 0
Module-Pluggable-5.1
pathname: S/SI/SIMONW/Module-Pluggable-5.1.tar.gz
provides:
Devel::InnerPackage 0.4
Module::Pluggable 5.1
Module::Pluggable::Object 5.1
requirements:
File::Basename 0
File::Spec 3.00
Module::Build 0.38
Test::More 0.62
if 0
Module-Runtime-0.014
pathname: Z/ZE/ZEFRAM/Module-Runtime-0.014.tar.gz
provides:
Module::Runtime 0.014
requirements:
Module::Build 0
Test::More 0
perl 5.006
strict 0
warnings 0
Moo-1.006001
pathname: H/HA/HAARG/Moo-1.006001.tar.gz
provides:
Method::Generate::Accessor undef
Method::Generate::BuildAll undef
Method::Generate::Constructor undef
Method::Generate::DemolishAll undef
Method::Inliner undef
Moo 1.006001
Moo::HandleMoose undef
Moo::HandleMoose::FakeConstructor undef
Moo::HandleMoose::FakeMetaClass undef
Moo::HandleMoose::_TypeMap undef
Moo::Object undef
Moo::Role 1.006001
Moo::_Utils undef
Moo::_mro undef
Moo::sification undef
Sub::Defer 1.006001
Sub::Quote 1.006001
oo undef
requirements:
Class::Method::Modifiers 1.1
Devel::GlobalDestruction 0.11
Exporter 5.57
ExtUtils::MakeMaker 0
Import::Into 1.002
Module::Runtime 0.014
Role::Tiny 1.003004
Scalar::Util 0
perl 5.006
strictures 1.004003
MooX-Types-MooseLike-0.27
pathname: M/MA/MATEU/MooX-Types-MooseLike-0.27.tar.gz
provides:
MooX::Types::MooseLike 0.27
MooX::Types::MooseLike::Base 0.27
requirements:
ExtUtils::MakeMaker 0
Module::Runtime 0.012
Moo 0.09101
Test::Fatal 0.003
Test::More 0.96
Net-HTTP-6.07
pathname: M/MS/MSCHILLI/Net-HTTP-6.07.tar.gz
provides:
Net::HTTP 6.07
Net::HTTP::Methods 6.07
Net::HTTP::NB 6.04
Net::HTTPS 6.04
requirements:
Compress::Raw::Zlib 0
ExtUtils::MakeMaker 0
IO::Compress::Gzip 0
IO::Select 0
IO::Socket::INET 0
URI 0
perl 5.006002
POSIX-strftime-Compiler-0.40
pathname: K/KA/KAZEBURO/POSIX-strftime-Compiler-0.40.tar.gz
provides:
POSIX::strftime::Compiler 0.40
requirements:
CPAN::Meta 0
CPAN::Meta::Prereqs 0
Carp 0
Exporter 0
ExtUtils::CBuilder 0
Module::Build 0.38
POSIX 0
Time::Local 0
perl 5.008001
Package-Stash-0.37
pathname: D/DO/DOY/Package-Stash-0.37.tar.gz
provides:
Package::Stash 0.37
Package::Stash::PP 0.37
requirements:
B 0
Carp 0
Config 0
Dist::CheckConflicts 0.02
ExtUtils::MakeMaker 0
File::Spec 0
Getopt::Long 0
Module::Implementation 0.06
Package::Stash::XS 0.26
Scalar::Util 0
Symbol 0
Text::ParseWords 0
constant 0
strict 0
warnings 0
Package-Stash-XS-0.28
pathname: D/DO/DOY/Package-Stash-XS-0.28.tar.gz
provides:
CompileTime undef
Package::Stash::XS 0.28
requirements:
ExtUtils::MakeMaker 6.30
XSLoader 0
strict 0
warnings 0
Params-Util-1.07
pathname: A/AD/ADAMK/Params-Util-1.07.tar.gz
provides:
Params::Util 1.07
requirements:
ExtUtils::CBuilder 0.27
ExtUtils::MakeMaker 6.52
File::Spec 0.80
Scalar::Util 1.18
Test::More 0.42
perl 5.00503
Params-Validate-1.15
pathname: D/DR/DROLSKY/Params-Validate-1.15.tar.gz
provides:
Attribute::Params::Validate 1.15
Params::Validate 1.15
Params::Validate::Constants 1.15
Params::Validate::PP 1.15
Params::Validate::XS 1.15
requirements:
Attribute::Handlers 0.79
Carp 0
Exporter 0
ExtUtils::CBuilder 0
Module::Build 0.28
Module::Implementation 0
Scalar::Util 1.10
XSLoader 0
attributes 0
perl 5.008001
strict 0
vars 0
warnings 0
Path-Class-0.35
pathname: K/KW/KWILLIAMS/Path-Class-0.35.tar.gz
provides:
Path::Class 0.35
Path::Class::Dir 0.35
Path::Class::Entity 0.35
Path::Class::File 0.35
requirements:
Carp 0
Cwd 0
Exporter 0
ExtUtils::MakeMaker 6.30
File::Copy 0
File::Path 0
File::Spec 3.26
File::Temp 0
File::stat 0
IO::Dir 0
IO::File 0
Module::Build 0.3601
Perl::OSType 0
Scalar::Util 0
overload 0
parent 0
strict 0
Plack-1.0033
pathname: M/MI/MIYAGAWA/Plack-1.0033.tar.gz
provides:
HTTP::Message::PSGI undef
HTTP::Server::PSGI undef
Plack 1.0033
Plack::App::CGIBin undef
Plack::App::Cascade undef
Plack::App::Directory undef
Plack::App::File undef
Plack::App::PSGIBin undef
Plack::App::URLMap undef
Plack::App::WrapCGI undef
Plack::Builder undef
Plack::Component undef
Plack::HTTPParser undef
Plack::HTTPParser::PP undef
Plack::Handler undef
Plack::Handler::Apache1 undef
Plack::Handler::Apache2 undef
Plack::Handler::Apache2::Registry undef
Plack::Handler::CGI undef
Plack::Handler::CGI::Writer undef
Plack::Handler::FCGI undef
Plack::Handler::HTTP::Server::PSGI undef
Plack::Handler::Standalone undef
Plack::LWPish undef
Plack::Loader undef
Plack::Loader::Delayed undef
Plack::Loader::Restarter undef