I have many modules like this:
package User;
use parent 'MyDB::Base';
my $x = MyDB::Base->somefunc();
which then causes Modules::RequireExplicitInclusion to complain about Use of "MyDB::Base" without including "MyDB::Base". It has been included by being use parented.