Merge remote branch 'kc/master' into new/enh/bug_5917
[koha_fer] / C4 / Installer / PerlDependencies.pm
index 8e269c6..eadc569 100644 (file)
@@ -448,7 +448,27 @@ our $PERL_DEPS = {
         'usage'    => 'Core',
         'required' => '1',
         'min_ver'  => '2.07'
-    }
+    },
+    'YAML' => {
+        'usage'    => 'Core',
+        'required' => '1',
+        'min_ver'  => '0.71'
+    },
+    'UNIVERSAL::require' => {
+        'usage'    => 'SipServer',
+        'required' => '0',
+        'min_ver'  => '0.13',
+    },
+    'Net::Server' => {
+        'usage'    => 'SipServer',
+        'required' => '0',
+        'min_ver'  => '0.97',
+    },
+    'Business::ISBN' => {
+        'usage'    => 'Core',
+        'required' => '1',
+        'min_ver'  => '2.05',
+    },
 };
 
 1;
@@ -468,6 +488,13 @@ A module for cataloging Koha Perl dependencies.
 This module's sole purpose for existence is to provide a single location to catalog all Koha Perl dependencies. New dependencies should be added to the
 end of the outer hash and follow the key/value pattern used in the other dependencies.
 
+=head2 Debian
+
+If you change the list of dependencies, and you use Debian, please also
+run the debian/update-control script and commit the modifed version of
+debian/control into git as well. If you're not running Debian, don't
+worry about it.
+
 =head1 AUTHOR
 
 Chris Nighswonger <cnighswonger AT foundations DOT edu>