The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Module::Setup::Path::Plugins;
use strict;
use warnings;
use base 'Module::Setup::Path::Base';

use Module::Collect;

sub collect {
    my $self = shift;
    my $collect = Module::Collect->new( path => $self->path );
    @{ $collect->modules };
}

1;