diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-05-03 18:31:40 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-05-03 18:31:40 +0200 |
commit | dc701e735f3c83703fd0d861b0124150c5f5bf87 (patch) | |
tree | 76f113f306ba4af1d0b49c8d45360e4ecdb18059 | |
parent | 8ffbc9afb15bca670d294ceca24da2afd7eb2db4 (diff) |
Document LWP::Protocol::https dependency
-rw-r--r-- | Build.PL | 15 | ||||
-rw-r--r-- | cpanfile | 1 |
2 files changed, 9 insertions, 7 deletions
@@ -19,13 +19,14 @@ Module::Build->new( module_name => 'Travel::Routing::DE::VRR', license => 'perl', requires => { - 'perl' => '5.10.1', - 'Class::Accessor' => 0, - 'Exception::Class' => 0, - 'Getopt::Long' => 0, - 'List::Util' => 0, - 'LWP::UserAgent' => 0, - 'XML::LibXML' => 0, + 'perl' => '5.10.1', + 'Class::Accessor' => 0, + 'Exception::Class' => 0, + 'Getopt::Long' => 0, + 'List::Util' => 0, + 'LWP::UserAgent' => 0, + 'LWP::Protocol::https' => 0, + 'XML::LibXML' => 0, }, sign => 1, meta_merge => { @@ -3,6 +3,7 @@ requires 'Exception::Class'; requires 'Getopt::Long'; requires 'List::Util'; requires 'LWP::UserAgent'; +requires 'LWP::Protocol::https'; requires 'XML::LibXML'; on test => sub { |