| 12
 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
 
 | # This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.008.
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
  "ABSTRACT" => "Simplify the common case stuff for DBIx::Class.",
  "AUTHOR" => "Arthur Axel \"fREW\" Schmidt <frioux+cpan\@gmail.com>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "DBIx-Class-Helpers",
  "LICENSE" => "perl",
  "NAME" => "DBIx::Class::Helpers",
  "PREREQ_PM" => {
    "Carp::Clan" => "6.04",
    "DBIx::Class" => "0.0826",
    "DBIx::Class::Candy" => "0.003001",
    "DBIx::Introspector" => "0.001002",
    "Lingua::EN::Inflect" => 0,
    "List::Util" => 0,
    "Module::Runtime" => 0,
    "Moo" => 2,
    "Safe::Isa" => 0,
    "String::CamelCase" => 0,
    "Sub::Exporter::Progressive" => "0.001006",
    "Text::Brew" => 0,
    "Try::Tiny" => 0,
    "namespace::clean" => "0.23",
    "parent" => 0
  },
  "TEST_REQUIRES" => {
    "DBD::SQLite" => 0,
    "DateTime::Format::SQLite" => 0,
    "Test::Deep" => 0,
    "Test::Fatal" => "0.006",
    "Test::More" => "0.94",
    "Test::Roo" => "1.003",
    "aliased" => "0.34"
  },
  "VERSION" => "2.033002",
  "test" => {
    "TESTS" => "t/*.t t/ResultClass/*.t t/ResultSet/*.t t/ResultSet/DateMethods1/*.t t/ResultSet/Shortcut/*.t t/ResultSet/Shortcut/Search/*.t t/Row/*.t t/Schema/*.t t/Schema/Verifier/*.t"
  }
);
my %FallbackPrereqs = (
  "Carp::Clan" => "6.04",
  "DBD::SQLite" => 0,
  "DBIx::Class" => "0.0826",
  "DBIx::Class::Candy" => "0.003001",
  "DBIx::Introspector" => "0.001002",
  "DateTime::Format::SQLite" => 0,
  "Lingua::EN::Inflect" => 0,
  "List::Util" => 0,
  "Module::Runtime" => 0,
  "Moo" => 2,
  "Safe::Isa" => 0,
  "String::CamelCase" => 0,
  "Sub::Exporter::Progressive" => "0.001006",
  "Test::Deep" => 0,
  "Test::Fatal" => "0.006",
  "Test::More" => "0.94",
  "Test::Roo" => "1.003",
  "Text::Brew" => 0,
  "Try::Tiny" => 0,
  "aliased" => "0.34",
  "namespace::clean" => "0.23",
  "parent" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
WriteMakefile(%WriteMakefileArgs);
 |