Storable is now in Core
[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
18 1;
19
20 =head1 NAME
21
22 DBIx::Class::Core - Core set of DBIx::Class modules
23
24 =head1 SYNOPSIS
25
26   # In your table classes
27   __PACKAGE__->load_components(qw/Core/);
28
29 =head1 DESCRIPTION
30
31 This class just inherits from the various modules that make up the
32 L<DBIx::Class> core features.  You almost certainly want these.
33
34 The core modules currently are:
35
36 =over 4
37
38 =item L<DBIx::Class::Serialize::Storable>
39
40 =item L<DBIx::Class::InflateColumn>
41
42 =item L<DBIx::Class::Relationship>
43
44 =item L<DBIx::Class::PK::Auto>
45
46 =item L<DBIx::Class::PK>
47
48 =item L<DBIx::Class::Row>
49
50 =item L<DBIx::Class::ResultSourceProxy::Table>
51
52 =back
53
54 =head1 AUTHORS
55
56 Matt S. Trout <mst@shadowcatsystems.co.uk>
57
58 =head1 LICENSE
59
60 You may distribute this code under the same terms as Perl itself.
61
62 =cut