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

SQL::Composer::Delete - DELETE statement

SYNOPSIS

my $delete = SQL::Composer::Delete->new(from => 'table', where => [a => 'b']);

my $sql = $delete->to_sql;   # 'DELETE FROM `table` WHERE `a` = ?'
my @bind = $delete->to_bind; # ['b']