File: Makefile.PL

package info (click to toggle)
libdbix-class-factory-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 1,475; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env perl

use strict;
use warnings FATAL => 'all';
use inc::Module::Install;

requires 'strict' => 0;
requires 'warnings' => 0;

repository 'https://github.com/VadimPushtaev/dbix-class-factory';

test_requires 'DBIx::Class' => 0;
test_requires 'SQL::Translator' => 0;
test_requires 'Test::More' => 0;
test_requires 'Test::Deep' => 0;

all_from 'lib/DBIx/Class/Factory.pm';

WriteAll;