Catalyst-Authentication-Credential-Upstream-Headers
view release on metacpan or search on metacpan
---
abstract: 'Catalyst authentication credentials from HTTP headers'
author:
- 'Mike Eldridge <diz@cpan.org>'
build_requires:
Catalyst::Plugin::Authorization::Roles: 0.08
Test::WWW::Mechanize::Catalyst: 0.52
configure_requires:
ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300006, CPAN::Meta::Converter version 2.113640'
license: perl
Makefile.PL view on Meta::CPAN
use strict;
use warnings;
use ExtUtils::MakeMaker 6.30;
my %WriteMakefileArgs = (
"ABSTRACT" => "Catalyst authentication credentials from HTTP headers",
"AUTHOR" => "Mike Eldridge <diz\@cpan.org>",
"BUILD_REQUIRES" => {
"Catalyst::Plugin::Authorization::Roles" => "0.08",
"Test::WWW::Mechanize::Catalyst" => "0.52"
},
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "Catalyst-Authentication-Credential-Upstream-Headers",
"EXE_FILES" => [],
lib/Catalyst/Authentication/Credential/Upstream/Headers.pm view on Meta::CPAN
package Catalyst::Authentication::Credential::Upstream::Headers;
{
$Catalyst::Authentication::Credential::Upstream::Headers::VERSION = '0.02';
}
# ABSTRACT: Catalyst authentication credentials from HTTP headers
use Moose;
has user_header =>
isa => 'Str',
is => 'ro',
default => 'X-Catalyst-Credential-Upstream-User';
has role_header =>
isa => 'Str',
( run in 0.357 second using v1.01-cache-2.11-cpan-4d50c553e7e )