use dist-checkconflicts
[gitmo/Class-MOP.git] / lib / Class / MOP / Conflicts.pm
diff --git a/lib/Class/MOP/Conflicts.pm b/lib/Class/MOP/Conflicts.pm
new file mode 100644 (file)
index 0000000..0861f6a
--- /dev/null
@@ -0,0 +1,20 @@
+package # hide from PAUSE
+    Class::MOP::Conflicts;
+use strict;
+use warnings;
+
+# Use the xt/author/test-my-dependents.t test in the Moose test suite to figure
+# out what on CPAN will break with the latest Moose, then update this before a
+# release.
+
+use Dist::CheckConflicts
+    -dist => 'Class-MOP',
+    -conflicts => {
+        'Moose'                => '1.14',
+        'namespace::autoclean' => '0.08',
+    },
+    -also => [
+        'Package::Stash::Conflicts',
+    ];
+
+1;