diff options
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 101bc2205..4ffae3448 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -301,7 +301,7 @@ sub OPTIONAL_MODULES { package => 'JSON-RPC', module => 'JSON::RPC', version => 0, - feature => ['jsonrpc', 'rest'], + feature => ['jsonrpc'], }, { package => 'Test-Taint', @@ -311,6 +311,36 @@ sub OPTIONAL_MODULES { feature => ['jsonrpc', 'xmlrpc', 'rest'], }, { + package => 'Moo', + module => 'Moo', + version => 2, + feature => ['rest'] + }, + { + package => 'Module-Runtime', + module => 'Module::Runtime', + version => 0, + feature => ['rest'] + }, + { + package => 'HTTP-Request', + module => 'HTTP::Request', + version => 0, + feature => ['rest'] + }, + { + package => 'HTTP-Response', + module => 'HTTP::Response', + version => 0, + feature => ['rest'] + }, + { + package => 'URI-Escape', + module => 'URI::Escape', + version => 0, + feature => ['rest'] + }, + { # We need the 'utf8_mode' method of HTML::Parser, for HTML::Scrubber. package => 'HTML-Parser', module => 'HTML::Parser', |