The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  NAME         => 'Mojolicious::Plugin::MountPSGI',
  VERSION_FROM => 'lib/Mojolicious/Plugin/MountPSGI.pm',
  AUTHOR       => '<Marcus Ramberg <mramberg@cpan.org>',
  PREREQ_PM    => {'Mojolicious' => '1.80',Plack=>0},
  test         => {TESTS => 't/*.t'}
);