-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
34 lines (31 loc) · 1.06 KB
/
Copy pathMakefile.PL
File metadata and controls
34 lines (31 loc) · 1.06 KB
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
34
use 5.020;
use strict;
use warnings;
use utf8;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojo::SQL',
VERSION_FROM => 'lib/Mojo/SQL.pm',
ABSTRACT => 'Safely generate and compose SQL statements',
AUTHOR => 'Sebastian Riedel <sri@cpan.org>',
LICENSE => 'mit',
META_MERGE => {
dynamic_config => 0,
'meta-spec' => {version => 2},
no_index => {directory => ['examples', 't']},
prereqs => {runtime => {requires => {perl => '5.020'}}},
resources => {
bugtracker => {web => 'https://github.com/mojolicious/mojo-sql/issues'},
homepage => 'https://mojolicious.org',
license => ['http://www.opensource.org/licenses/mit'],
repository => {
type => 'git',
url => 'https://github.com/mojolicious/mojo-sql.git',
web => 'https://github.com/mojolicious/mojo-sql',
},
x_IRC => {url => 'irc://irc.libera.chat/#mojo', web => 'https://web.libera.chat/#mojo'}
},
},
PREREQ_PM => {Mojolicious => '9.41'},
test => {TESTS => 't/*.t'}
);