some pod cleanups
[gitmo/Moo.git] / lib / Moo / Conflicts.pm
1 package # hide from PAUSE
2     Moo::Conflicts;
3
4 use strict;
5 use warnings;
6
7 use Dist::CheckConflicts
8     -dist      => 'Moo',
9     -conflicts => {
10         # enter conflicting downstream deps here, with the version indicating
11         # the last *broken* version that *does not work*.
12         'HTML::Restrict' => '2.1.5',
13     },
14
15     # these dists' ::Conflicts modules (if they exist) are also checked for
16     # more incompatibilities -- should include all runtime prereqs here.
17     -also => [ qw(
18         Carp
19         Class::Method::Modifiers
20         strictures
21         Module::Runtime
22         Role::Tiny
23         Devel::GlobalDestruction
24     ) ],
25 ;
26
27 1;