blob: 32d88fd241aca5420a90c763b1c0d3f0ad3d2c47 [file] [log] [blame]
Akronb8410e52020-09-08 13:35:40 +02001use 5.016;
Nils Diewald02df9912014-06-03 16:08:07 +00002use strict;
3use warnings;
4
5use ExtUtils::MakeMaker;
6
7WriteMakefile(
Nils Diewald2fe12e12015-03-06 16:47:06 +00008 VERSION_FROM => 'lib/Kalamar.pm',
Akrone6e5b0b2015-05-21 22:49:39 +02009 ABSTRACT => 'Mojolicious-based Frontend for KorAP',
Nils Diewald2fe12e12015-03-06 16:47:06 +000010 NAME => 'Kalamar',
Nils Diewald02df9912014-06-03 16:08:07 +000011 AUTHOR => 'Nils Diewald',
Nils Diewald02df9912014-06-03 16:08:07 +000012 BUILD_REQUIRES => {
Akron17c60812020-06-15 14:29:30 +020013 'Test::More' => 0,
14 'Test::Mojo::Session' => 1.06,
15 'Test::Mojo::WithRoles' => 0.02,
Nils Diewald02df9912014-06-03 16:08:07 +000016 },
Akron4fabd022018-04-24 18:01:01 +020017 LICENSE => 'freebsd',
Nils Diewald02df9912014-06-03 16:08:07 +000018 PREREQ_PM => {
Akrona3523932020-05-08 14:49:00 +020019 'Mojolicious' => '8.42',
Akron1e1a8b32021-02-08 14:20:28 +010020 'Mojolicious::Plugin::TagHelpers::Pagination' => 0.08,
Akron1011daf2021-03-01 12:34:58 +010021 'Mojolicious::Plugin::TagHelpers::MailToChiffre' => 0.13,
Akrona3523932020-05-08 14:49:00 +020022 'Mojolicious::Plugin::ClosedRedirect' => 0.15,
Akron1e1a8b32021-02-08 14:20:28 +010023 'Mojolicious::Plugin::Notifications' => 1.06,
24 'Mojolicious::Plugin::MailException' => 0.24,
25 'Mojolicious::Plugin::Util::RandomString' => 0.09,
Akron8df95122018-11-14 17:03:42 +010026 'Mojolicious::Plugin::CHI' => 0.20,
Akron1e1a8b32021-02-08 14:20:28 +010027 'Mojolicious::Plugin::ClientIP' => 0.02,
28 'Cache::FastMmap' => 1.56,
29 'Data::Serializer' => 0.65,
30 'Mojo::JWT' => 0.09,
Nils Diewald996aa552014-12-02 03:26:44 +000031
Akron751e9e42019-03-13 09:54:55 +010032 # Required for Data::Serializer at the moment
Akron1e1a8b32021-02-08 14:20:28 +010033 'JSON' => 4.03,
Akron751e9e42019-03-13 09:54:55 +010034
Akron7c758412018-11-13 14:17:00 +010035 # Required for bundled plugins
Akron0a4d36e2021-01-18 17:50:48 +010036 'Mojolicious::Plugin::Piwik' => 0.28,
Akron7c758412018-11-13 14:17:00 +010037
Nils Diewald023c6712015-05-21 20:12:30 +000038 # Currently on GitHub only (github.com/akron)
Akron1e1a8b32021-02-08 14:20:28 +010039 'Mojolicious::Plugin::Localize' => 0.21,
40 'Mojolicious::Plugin::TagHelpers::ContentBlock' => 0.09,
Nils Diewald02df9912014-06-03 16:08:07 +000041 },
Akron87468c22021-02-08 09:30:01 +010042
43 META_MERGE => {
44 'meta-spec' => { version => 2 },
45 requires => { perl => '5.010001' },
46 resources => {
47 license => 'https://opensource.org/licenses/BSD-2-Clause',
48 repository => {
49 type => 'git',
50 url => 'https://github.com/KorAP/Kalamar.git',
51 web => 'https://github.com/KorAP/Kalamar',
52 },
53 bugtracker => {
54 web => 'https://github.com/KorAP/Kalamar/issues'
55 }
56 }
57 },
58
Nils Diewald02df9912014-06-03 16:08:07 +000059 test => {
60 TESTS => 't/*.t'
61 }
62);