cleanup Task::Catalyst
[catagits/Task-Catalyst.git] / lib / Task / Catalyst.pm
CommitLineData
f930a8cf 1package Task::Catalyst;
2
3use strict;
999d871c 4use warnings;
f930a8cf 5
999d871c 6our $VERSION = '2.0000';
f930a8cf 7
8=head1 NAME
9
10Task::Catalyst - All you need to start with Catalyst
11
12=head1 SYNOPSIS
13
14C<perl -MCPAN -e 'install Task::Catalyst'>
15
16=head1 DESCRIPTION
17
18Installs everything you need to write serious Catalyst applications.
19
20L<Catalyst>
21
08c4c68b 22L<Catalyst::Devel>
23
24L<Catalyst::Engine::Apache>
25
26L<FCGI>
27
28L<FCGI::ProcManager>
29
30L<PAR>
31
250b923b 32L<Catalyst::Log::Log4perl>
33
393c3203 34L<Catalyst::Plugin::HTML::Widget>
f930a8cf 35
08c4c68b 36L<Catalyst::Controller::FormBuilder>
37
393c3203 38L<Catalyst::Plugin::StackTrace>
f930a8cf 39
40L<Catalyst::Plugin::Prototype>
41
f930a8cf 42L<Catalyst::Plugin::Session>
43
44L<Catalyst::Plugin::Session::Store::File>
45
46L<Catalyst::Plugin::Session::State::Cookie>
47
48L<Catalyst::Plugin::Session::State::URI>
49
393c3203 50L<Catalyst::Plugin::Authentication>
51
52L<Catalyst::Plugin::Authentication::Store::DBIC>
53
54L<Catalyst::Plugin::Authentication::Store::Htpasswd>
55
56L<Catalyst::Plugin::Authorization::ACL>
57
58L<Catalyst::Plugin::Authorization::Roles>
59
dadc636c 60L<Catalyst::Plugin::I18N>
61
08c4c68b 62L<Catalyst::Controller::BindLex>
63
acebeec6 64L<Catalyst::Model::DBIC::Schema>
f930a8cf 65
66L<Catalyst::View::TT>
67
68L<Test::WWW::Mechanize::Catalyst>
69
70L<DBD::SQLite>
71
f930a8cf 72=head1 AUTHOR
73
999d871c 74The Catalyst Core Team - see http://catalyst.perl.org/
f930a8cf 75
76=head1 LICENSE
77
78This library is free software, you can redistribute it and/or modify it under
79the same terms as Perl itself.
80
81=cut
82
831;