The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use v5.10;
use utf8;

use ExtUtils::MakeMaker;

WriteMakefile(
  NAME         => 'App::Environ::Mojo::Pg',
  VERSION_FROM => 'lib/App/Environ/Mojo/Pg.pm',
  PREREQ_PM    => {
    'App::Environ'     => '0.18',
    'Params::Validate' => 0,
    'URI'              => 0,
    'Mojo::Pg'         => 0,
  },
  ABSTRACT_FROM => 'lib/App/Environ/Mojo/Pg.pm',
  AUTHOR        => 'Andrey Kuzmin <kak-tus@mail.ru>',
  META_MERGE    => {
    dynamic_config => 0,
    'meta-spec'    => { version => 2 },
    no_index       => { directory => [ 'example', 't' ] },
    prereqs        => { runtime => { requires => { perl => '5.010001' } } },
    resources      => {
      repository => {
        type => 'git',
        url  => 'https://github.com/kak-tus/App-Environ-Mojo-Pg.git',
        web  => 'https://github.com/kak-tus/App-Environ-Mojo-Pg',
      },
    },
  },
);