Dist::Zilla::Role::Stash::Login - a stash with username/password credentials


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Role::Stash::Login - a stash with username/password credentials

VERSION

Top

version 4.200008

OVERVIEW

Top

A Login stash must provide a username and password method.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

package Dist::Zilla::Role::Stash::Login;
BEGIN {
  $Dist::Zilla::Role::Stash::Login::VERSION = '4.200008';
}
use Moose::Role;
with 'Dist::Zilla::Role::Stash';
# ABSTRACT: a stash with username/password credentials


requires 'username';
requires 'password';

1;

__END__