diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-02-19 20:03:01 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-02-19 20:03:01 -0800 |
commit | 66cc0307173888d7c5f907d055186e3031faf33b (patch) | |
tree | f845bd2c919d3c6ee8070a64d5b0f02418e1274d /Makefile.PL | |
parent | c767137d8443af8fea41b7513dd0746740999ca4 (diff) |
+ Setting custom nameservers (closes: CPAN#66902)
+ EPP phone number conversion (closes: CPAN#49340)
+ $c can now have same keys as OpenSRS api (postal_code, address1,
address2, etc) while keeping backcompat (address, zip, etc)
+ massive country list was replaced with Locales (closes: CPAN#49341)
- reorder changelog newest first
- doc: update Authors
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL index b5f38df..0f6fd46 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,16 +4,20 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Net::OpenSRS', - AUTHOR => 'Richard L. Siddall <opensrs@elirion.net>', # Really just maintainer + AUTHOR => 'Ivan Kohler <ivan-opensrs@freeside.biz>', # Really just the current maintainer VERSION_FROM => 'lib/Net/OpenSRS.pm', ABSTRACT_FROM => 'lib/Net/OpenSRS.pm', PL_FILES => {}, PREREQ_PM => { - 'Test::More' => 0, 'LWP::UserAgent' => 0, 'XML::Simple' => 0, 'Digest::MD5' => 0, 'Date::Calc' => 0, + 'Locales' => 0, + 'Number::Phone' => 0, + }, + BUILD_REQUIRES => { + 'Test::More' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Net-OpenSRS-*' }, |