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

package DZ1;
# ABSTRACT: this is a sample package for testing Dist::Zilla;

our $VERSION = '1.234';

sub main {
    return 1;
}

1;