Subject: | Change the order of your dependencies in Makefile.PL |
CPAN clients will generally process your dependencies in the exact order
listed in the Makefile.PL.
So you should try to order your deps in such a way as to reduce
recursion and maximise test coverage for options modules.
For example, SQL::Abstract::Limit requires SQL::Abstract, so you should
list SQL::Abstract before SQL::Abstract::Limit, to reduce the
reducursion occuring and mimimise any potential edge cases in the
installer toolchain.