-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
29 lines (29 loc) · 875 Bytes
/
Makefile.PL
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
# Note: this file was auto-generated by Module::Build::Compat version 0.4205
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'Queue::DBI',
'EXE_FILES' => [],
'test' => {
'TESTS' => 't/*.t t/90-Element/*.t t/01-Admin/*.t'
},
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'VERSION_FROM' => 'lib/Queue/DBI.pm',
'PREREQ_PM' => {
'Test::Exception' => 0,
'Test::More' => '0.94',
'Data::Dumper' => 0,
'Data::Validate::Type' => 0,
'Try::Tiny' => 0,
'Carp' => 0,
'MIME::Base64' => 0,
'Test::Type' => 0,
'DBD::SQLite' => 0,
'DBI' => 0,
'Storable' => 0,
'Test::FailWarnings' => 0
}
)
;