add new test files to MANIFEST
[Business-OnlinePayment-TransactionCentral.git] / Makefile.PL
1 use 5.005;
2 use ExtUtils::MakeMaker;
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::TransactionCentral',
7     VERSION_FROM      => 'lib/Business/OnlinePayment/TransactionCentral.pm', # finds $VERSION
8     PREREQ_PM         => {
9                            'Business::OnlinePayment' => 3,
10
11                            # for HTTPS (maybe it should be a separate dist?)
12                            'URI::Escape' => 0,
13                            'Tie::IxHash' => 0,
14
15                            # 'Net::SSLeay' => 0,
16                            # or 'Crypt::SSLeay' => 0,
17                            #    'URI
18                          },
19     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
20       (ABSTRACT_FROM  => 'lib/Business/OnlinePayment/TransactionCentral.pm', # retrieve abstract from module
21        AUTHOR         => 'Ivan Kohler <ivan-transactioncentral@420.am>') : ()),
22 );