The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestApp;
# vim: ts=8 sts=4 et sw=4 sr sta
use Moose;
    extends 'Catalyst';
use namespace::autoclean;
use Catalyst::Runtime 5.80;

our $VERSION = '0.0.4';

# hide debug output at startup
{
    no strict 'refs';
    no warnings;
    *{"Catalyst\::Log\::debug"} = sub { };
    *{"Catalyst\::Log\::info"}  = sub { };
}

__PACKAGE__->config(
    name => 'TestApp',

    'Plugin::Authentication' => {
        default => {
            credential => {
                class => 'Password',
                password_field => 'password',
                password_type => 'clear'
            },
            store => {
                class => 'Minimal',
                users => {
                    buffy => {
                        password => 'stake',
                    }
                }
            }
        }
    }
);

VERSION_MADNESS: {
    use version;
    my $vstring = version->new($VERSION)->normal;
    __PACKAGE__->config(
        version => $vstring
    );
}

__PACKAGE__->setup(
    qw<
        -Debug
        StackTrace
        ErrorCatcher
        ConfigLoader
        Authentication

        Session
        Session::Store::File
        Session::State::Cookie
    >
);

1;