The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'         => 'Business::OnlinePayment::OpenECHO',
    'VERSION_FROM' => 'OpenECHO.pm', # finds $VERSION
    'AUTHOR'       => 'Ivan Kohler <ivan-openecho@420.am>', #really just
                                                            #the maintainer
    #'NORECURS'     => 1, # dont descend into subdirectories
    'PREREQ_PM'    => {
                        'Business::OnlinePayment' => 0,

                        # 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'},
);