blob: a9b76e42b4841fab65f57b3501b98de67a2b84f5 [file] [log] [blame]
Nils Diewald02df9912014-06-03 16:08:07 +00001use 5.010001;
2use strict;
3use warnings;
4
5use ExtUtils::MakeMaker;
6
7WriteMakefile(
8 VERSION_FROM => 'lib/Korap.pm',
9 ABSTRACT => 'Test Frontend for the KorAP API',
10 NAME => 'Korap',
11 AUTHOR => 'Nils Diewald',
12 VERSION => '0.01',
13 BUILD_REQUIRES => {
14 'Test::More' => 0
15 },
16 LICENSE => 'artistic_2',
17 PREREQ_PM => {
18 'Mojolicious' => '4.92',
19 'Mojolicious::Plugin::TagHelpers::Pagination' => 0.01,
20 'Mojolicious::Plugin::Notifications' => 0.03,
Nils Diewald2329e1d2014-06-12 16:07:57 +000021 'Mojolicious::Plugin::CHI' => 0.09,
Nils Diewald33e15552014-06-13 19:38:37 +000022 'Cache::FastMmap' => 0,
Nils Diewald02df9912014-06-03 16:08:07 +000023# 'Mojolicious::Plugin::Search' => 0.01,
24 'Mojolicious::Plugin::Number::Commify' => '0.022',
25 'JSON::XS' => 0.0
26 },
27 test => {
28 TESTS => 't/*.t'
29 }
30);