blob: ac97d4180abe1d5b1384360c70e23c2ed6003fc8 [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 Diewald02df9912014-06-03 16:08:07 +000022# 'Mojolicious::Plugin::Search' => 0.01,
23 'Mojolicious::Plugin::Number::Commify' => '0.022',
24 'JSON::XS' => 0.0
25 },
26 test => {
27 TESTS => 't/*.t'
28 }
29);