The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Business::OnlinePayment',
'VERSION_FROM' => 'OnlinePayment.pm', # finds $VERSION
'AUTHOR' => 'Ivan Kohler <ivan-business-onlinepayment@420.am>',
'NORECURS' => 1, # dont descend into subdirectories
'PREREQ_PM' => {
# for HTTPS (maybe it should be a separate dist?)
'URI::Escape' => 0,
'Tie::IxHash' => 0,
# 'Net::SSLeay' => 0,
# or 'Crypt::SSLeay' => 0,
# 'URI
},
#'dist' => {CI => 'ci -l'},
);