we need B:OP v3, declare so in Makefile.PL
[Business-OnlinePayment-OpenECHO.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4 WriteMakefile(
5     'NAME'         => 'Business::OnlinePayment::OpenECHO',
6     'VERSION_FROM' => 'OpenECHO.pm', # finds $VERSION
7     'AUTHOR'       => 'Ivan Kohler <ivan-openecho@420.am>', #really just
8                                                             #the maintainer
9     #'NORECURS'     => 1, # dont descend into subdirectories
10     'PREREQ_PM'    => {
11                         'Business::OnlinePayment' => 3,
12
13                         # for HTTPS (maybe it should be a separate dist?)
14                         'URI::Escape' => 0,
15                         'Tie::IxHash' => 0,
16                        
17                         # 'Net::SSLeay' => 0,
18                         # or 'Crypt::SSLeay' => 0,
19                         #    'URI
20
21                       },
22     #'dist'         => {CI => 'ci -l'},
23 );
24