column name fix for remote column
[scpubgit/System-Introspector-Report.git] / Makefile.PL
CommitLineData
499ebcdd 1use strict;
2use warnings FATAL => 'all';
3use ExtUtils::MakeMaker;
4
5(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7WriteMakefile(
8 NAME => 'System-Introspector-Report',
9 VERSION_FROM => 'lib/System/Introspector/Report.pm',
10 PREREQ_PM => {
11 'Moo' => '1.000000',
12 'HTML::Zoom' => '0.009006',
13 'Config::General' => '2.51',
14 'Module::Runtime' => '0.013',
15 'IO::All' => '0.45',
16 'strictures' => '1',
17 'JSON::PP' => '2.53',
18 'Object::Remote' => '0.001001',
0331d9cd 19 'MediaWiki::API' => '0.39',
499ebcdd 20 'MRO::Compat' => 0,
21 'Class::C3' => 0,
22 'Getopt::Long' => 0,
23 'Pod::Usage' => 0,
24 'aliased' => 0,
0331d9cd 25 'Try::Tiny' => 0,
499ebcdd 26 },
27 EXE_FILES => [
28 'bin/system-introspector-report',
29 ],
30);