I hate you all.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
1 package DBIx::Class::Core;
2
3 use strict;
4 use warnings;
5 no warnings 'qw';
6
7 use base qw/DBIx::Class/;
8
9 __PACKAGE__->load_components(qw/
10   Serialize::Storable
11   Relationship
12   InflateColumn
13   PK::Auto
14   PK
15   Row
16   ResultSourceProxy::Table
17   AccessorGroup/);
18
19 1;
20
21 =head1 NAME
22
23 DBIx::Class::Core - Core set of DBIx::Class modules
24
25 =head1 SYNOPSIS
26
27   # In your table classes
28   __PACKAGE__->load_components(qw/Core/);
29
30 =head1 DESCRIPTION
31
32 This class just inherits from the various modules that make up the
33 L<DBIx::Class> core features.  You almost certainly want these.
34
35 The core modules currently are:
36
37 =over 4
38
39 =item L<DBIx::Class::Serialize::Storable>
40
41 =item L<DBIx::Class::InflateColumn>
42
43 =item L<DBIx::Class::Relationship>
44
45 =item L<DBIx::Class::PK::Auto>
46
47 =item L<DBIx::Class::PK>
48
49 =item L<DBIx::Class::Row>
50
51 =item L<DBIx::Class::ResultSourceProxy::Table>
52
53 =item L<DBIx::Class::AccessorGroup>
54
55 =back
56
57 =head1 AUTHORS
58
59 Matt S. Trout <mst@shadowcatsystems.co.uk>
60
61 =head1 LICENSE
62
63 You may distribute this code under the same terms as Perl itself.
64
65 =cut