- tests updated for new B::OP::PayflowPro using HTTP protocol
[Business-OnlinePayment-PayflowPro.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME         => 'Business::OnlinePayment::PayflowPro',
7     VERSION_FROM => 'PayflowPro.pm',
8     PREREQ_PM    => {
9         Business::OnlinePayment => 0,
10         PFProAPI                => 0,
11     },
12     (
13         $] >= 5.005
14         ?    ## Add these new keywords supported since 5.005
15           (
16             ABSTRACT_FROM => 'PayflowPro.pm',
17             AUTHOR        => 
18                 join(
19                      ' and ',
20                      'Ivan Kohler <ivan-payflowpro@420.am>',
21                      'Phil Lobbes <phil at perkpartners.com>',
22                     ),
23           )
24         : ()
25     ),
26 );