6083: Adding some version numbers and newlines to improve output in web installer
[koha.git] / misc / perlmodule_ls.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use ExtUtils::Installed;
7
8 my $instmod = ExtUtils::Installed->new();
9 foreach my $module ($instmod->modules()) {
10     my $version = $instmod->version($module) || "???";
11     print "$module -- $version\n";
12 }