Dist::Zilla::Stash::PAUSE - a stash of your PAUSE credentials


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

Index


Code Index:

NAME

Top

Dist::Zilla::Stash::PAUSE - a stash of your PAUSE credentials

VERSION

Top

version 4.200008

OVERVIEW

Top

The PAUSE stash is a Login stash generally used for uploading to PAUSE.

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Dist::Zilla::Stash::PAUSE;
BEGIN {
  $Dist::Zilla::Stash::PAUSE::VERSION = '4.200008';
}
use Moose;
# ABSTRACT: a stash of your PAUSE credentials


sub mvp_aliases {
  return { user => 'username' };
}

has username => (
  is  => 'ro',
  isa => 'Str',
  required => 1,
);

has password => (
  is  => 'ro',
  isa => 'Str',
  required => 1,
);

with 'Dist::Zilla::Role::Stash::Login';
1;

__END__