There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

XML::LibXSLT::Easy - DWIM XSLT processing with XML::LibXSLT

SYNOPSIS

use XML::LibXSLT::Easy;

my $p = XML::LibXSLT::Easy->new;

my $output = $p->process( xml => "foo.xml", xsl => "foo.xsl" );

# takes various types of arguments
$p->process( xml => $doc, xsl => $filehandle, out => $filename );

DESCRIPTION