-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
34 lines (28 loc) · 1.19 KB
/
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
30
31
32
33
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Platter',
VERSION => '0.01',
PREREQ_PM => {
'Mojolicious' => '3.60',
'Mojolicious::Plugin::Authentication' => '1.24',
'Mojolicious::Plugin::FormFields' => '0.02',
'Mojolicious::Plugin::Validator' => 0,
'Plack' => '1.0014',
'DBIx::Class' => '0.08204',
'DBD::mysql' => '4.022',
'DateTime' => '0.78',
'DateTime::Format::MySQL' => 0,
'String::CamelCase' => '0.02',
'JSON' => '2.50',
'Object::Container' => '0.14',
'Path::Class' => '0.29',
'Module::Find' => '0.11',
'Any::Moose' => '0.18',
# 開発環境関連
'Project::Libs' => 0,
'SQL::Translator' => '0.11016',
},
test => {TESTS => 't/*.t'}
);