http://www.perlmonks.org?node_id=1047251


in reply to Replacment for Data::Diver due missing license

tye said he'd update it; just be a little more patient.

Maybe you could make it a little easier on him by forking the repository, adding the Perl 5 licence, and submitting a pull request? Then he just needs to accept the pull, make dist and upload.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name