Remove ::Plugin:: from module namespace, provide a legacy/compatibility ::Plugin...
[catagits/Catalyst-Authentication-Credential-HTTP.git] / lib / Catalyst / Plugin / Authentication / Credential / HTTP.pm
1 package Catalyst::Plugin::Authentication::Credential::HTTP;
2 use base qw/Catalyst::Authentication::Credential::HTTP/;
3
4 our $VERSION = '0.11';
5
6 # FIXME - Add a warning here?
7 # FIXME - Is this package even needed?
8
9 1;
10
11 __END__
12
13 =pod
14
15 =head1 NAME
16
17 Catalyst::Plugin::Authentication::Credential::HTTP - HTTP Basic and Digest authentication
18 for Catalyst.
19
20 =head1 SYNOPSIS
21
22     use Catalyst qw/
23         Authentication
24         Authentication::Store::Minimal
25         Authentication::Credential::HTTP
26     /;
27
28 =head1 DESCRIPTION
29
30 This module is deprecated. Please see L<Catalyst::Authentication::Credential::HTTP>
31
32 =head1 AUTHORS
33
34 Yuval Kogman, C<nothingmuch@woobling.org>
35
36 Jess Robinson
37
38 Sascha Kiefer C<esskar@cpan.org>
39
40 Tomas Doran C<bobtfish@bobtfish.net>
41
42 =head1 SEE ALSO
43
44 L<Catalyst::Authentication::Credential::HTTP>.
45
46 =head1 COPYRIGHT & LICENSE
47
48         Copyright (c) 2005-2006 the aforementioned authors. All rights
49         reserved. This program is free software; you can redistribute
50         it and/or modify it under the same terms as Perl itself.
51
52 =cut