added [VersionFromModule] plugin, as ::Fixtures uses the version for stuff
[dbsrgits/DBIx-Class-Fixtures.git] / Makefile.PL
CommitLineData
9ff1816a 1
01a10324 2# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.025.
9ff1816a 3use strict;
4use warnings;
5
6use 5.006001;
7
01a10324 8use ExtUtils::MakeMaker;
9ff1816a 9
10
11
12my %WriteMakefileArgs = (
13 "ABSTRACT" => "Dump data and repopulate a database using rules",
14 "AUTHOR" => "Luke Saunders <luke\@shadowcatsystems.co.uk>",
15 "BUILD_REQUIRES" => {
16 "DBIx::Class::InflateColumn::FS" => "0.01007",
17 "ExtUtils::MakeMaker" => "6.59",
18 "Test::More" => "0.98"
19 },
20 "CONFIGURE_REQUIRES" => {
21 "ExtUtils::MakeMaker" => "6.59"
22 },
23 "DISTNAME" => "DBIx-Class-Fixtures",
24 "EXE_FILES" => [],
25 "LICENSE" => "perl",
01a10324 26 "MIN_PERL_VERSION" => "5.006001",
9ff1816a 27 "NAME" => "DBIx::Class::Fixtures",
28 "PREREQ_PM" => {
29 "Class::Accessor::Grouped" => "0.1001",
30 "Config::Any" => "0.23",
31 "DBIx::Class" => "0.08102",
32 "DBIx::Class::Schema::Loader" => "0.07035",
33 "Data::Dump::Streamer" => "2.05",
34 "Data::Visitor" => "0.3",
35 "DateTime" => "1.03",
36 "DateTime::Format::MySQL" => 0,
37 "DateTime::Format::Pg" => 0,
38 "DateTime::Format::SQLite" => "0.1",
39 "File::Copy::Recursive" => "0.38",
40 "File::Path" => "2.09",
41 "File::Spec::Functions" => "3.4",
42 "Hash::Merge" => "0.1",
43 "JSON::Syck" => "1.27",
44 "MIME::Base64" => 0,
45 "Path::Class" => "0.32",
46 "Scalar::Util" => "1.27",
47 "Test::Compile::Internal" => 0
48 },
49 "TEST_REQUIRES" => {
50 "File::Spec" => 0,
51 "IO::Handle" => 0,
52 "IPC::Open3" => 0,
53 "Test::More" => "0.98"
54 },
01a10324 55 "VERSION" => "1.001026",
9ff1816a 56 "test" => {
57 "TESTS" => "t/*.t"
58 }
59);
60
61
62my %FallbackPrereqs = (
63 "Class::Accessor::Grouped" => "0.1001",
64 "Config::Any" => "0.23",
65 "DBIx::Class" => "0.08102",
66 "DBIx::Class::InflateColumn::FS" => "0.01007",
67 "DBIx::Class::Schema::Loader" => "0.07035",
68 "Data::Dump::Streamer" => "2.05",
69 "Data::Visitor" => "0.3",
70 "DateTime" => "1.03",
71 "DateTime::Format::MySQL" => 0,
72 "DateTime::Format::Pg" => 0,
73 "DateTime::Format::SQLite" => "0.1",
74 "ExtUtils::MakeMaker" => "6.59",
75 "File::Copy::Recursive" => "0.38",
76 "File::Path" => "2.09",
77 "File::Spec" => 0,
78 "File::Spec::Functions" => "3.4",
79 "Hash::Merge" => "0.1",
80 "IO::Handle" => 0,
81 "IPC::Open3" => 0,
82 "JSON::Syck" => "1.27",
83 "MIME::Base64" => 0,
84 "Path::Class" => "0.32",
85 "Scalar::Util" => "1.27",
86 "Test::Compile::Internal" => 0,
87 "Test::More" => "0.98"
88);
89
90
91unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
92 delete $WriteMakefileArgs{TEST_REQUIRES};
93 delete $WriteMakefileArgs{BUILD_REQUIRES};
94 $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
95}
96
97delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
98 unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
99
100WriteMakefile(%WriteMakefileArgs);
101
102
103