Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/share/doc/perl-MetaCPAN-Client/examples/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/perl-MetaCPAN-Client/examples/contributors.pl

use strict;
use warnings;
use MetaCPAN::Client;
use Data::Printer;

my $mcpan = MetaCPAN::Client->new();

my $release = $mcpan->release({
    all => [
        { distribution => 'Moose' },
        { version => '2.2005' },
    ]
})->next;

my $contributors = $release->contributors;

p $contributors;

1;