fix expired card
[Business-OnlinePayment-CardFortress.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Business::OnlinePayment::CardFortress',
7     AUTHOR              => q{Ivan Kohler <ivan-cardfortress@420.am>},
8     VERSION_FROM        => 'lib/Business/OnlinePayment/CardFortress.pm',
9     ABSTRACT_FROM       => 'lib/Business/OnlinePayment/CardFortress.pm',
10     ($ExtUtils::MakeMaker::VERSION >= 6.3002
11       ? ('LICENSE'=> 'perl')
12       : ()),
13     PL_FILES            => {},
14     PREREQ_PM => {
15         'Test::More' => 0,
16         'File::Slurp' => 0,
17         'Crypt::OpenSSL::RSA' => 0,
18         'Business::OnlinePayment' => 0,
19     },
20     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
21     clean               => { FILES => 'Business-OnlinePayment-CardFortress-*' },
22 );