{"id":19648590,"url":"https://github.com/bestpractical/module-versions-report","last_synced_at":"2026-03-03T03:04:08.333Z","repository":{"id":544311,"uuid":"174319","full_name":"bestpractical/module-versions-report","owner":"bestpractical","description":null,"archived":false,"fork":false,"pushed_at":"2009-04-12T21:48:09.000Z","size":84,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-01-09T22:54:19.892Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://search.cpan.org/dist/Module-Versions-Report","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bestpractical.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-04-12T21:47:40.000Z","updated_at":"2019-08-13T14:17:28.000Z","dependencies_parsed_at":"2022-07-17T00:16:26.369Z","dependency_job_id":null,"html_url":"https://github.com/bestpractical/module-versions-report","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fmodule-versions-report","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fmodule-versions-report/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fmodule-versions-report/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bestpractical%2Fmodule-versions-report/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bestpractical","download_url":"https://codeload.github.com/bestpractical/module-versions-report/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240958349,"owners_count":19884906,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T14:49:07.364Z","updated_at":"2026-03-03T03:04:03.298Z","avatar_url":"https://github.com/bestpractical.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"README for Module::Report::Versions\n                                       Time-stamp: \"2003-06-21 23:18:00 AHDT\"\n\nNAME\n    Module::Versions::Report -- report versions of all modules in memory\n\nSYNOPSIS\n      use Module::Versions::Report;\n  \n      ...and any code you want...\n\n    This will run all your code normally, but then as the Perl interpreter\n    is about to exit, it will print something like:\n\n      Perl v5.6.1 under MSWin32.\n       Modules in memory:\n        attributes;\n        AutoLoader v5.58;\n        Carp;\n        Config;\n        DynaLoader v1.04;\n        Exporter v5.562;\n        Module::Versions::Report v1.01;\n        HTML::Entities v1.22;\n        HTML::HeadParser v2.15;\n        HTML::Parser v3.25;\n        [... and whatever other modules were loaded that session...]\n\n    Consider its use from the command line:\n\n      % perl -MModule::Versions::Report -MLWP -e 1\n\n      Perl v5.6.1 under MSWin32.\n       Modules in memory:\n        attributes;\n        AutoLoader v5.58;\n        [...]\n\nDESCRIPTION\n    I often get email from someone reporting a bug in a module I've written.\n    I email back, asking what version of the module it is, what version of\n    Perl on what OS, and sometimes what version of some relevent third\n    library (like XML::Parser). They reply, saying \"Perl 5\". I say \"I need\n    the exact version, as reported by \"perl -v\"\". They tell me. And I say\n    \"I, uh, also asked about the version of my module and XML::Parser [or\n    whatever]\". They say \"Oh yeah. It's 2.27\". \"Is that my module or\n    XML::Parser?\" \"XML::Parser.\" \"OK, and what about my module's version?\"\n    \"Ohyeah. That's 3.11.\" By this time, days have passed, and what should\n    have been a simple operation -- reporting the version of Perl and\n    relevent modules, has been needlessly complicated.\n\n    This module is for simplifying that task. If you add \"use\n    Module::Versions::Report;\" to a program (especially handy if your\n    program is one that demonstrates a bug in some module), then when the\n    program has finished running, you well get a report detailing the all\n    modules in memory, and noting the version of each (for modules that\n    defined a $VERSION, at least).\n\nCOPYRIGHT AND DISCLAIMER\n    Copyright 2001-2003 Sean M. Burke. This library is free software; you\n    can redistribute it and/or modify it under the same terms as Perl\n    itself.\n\n    This program is distributed in the hope that it will be useful, but\n    without any warranty; without even the implied warranty of\n    merchantability or fitness for a particular purpose.\n\nAUTHOR\n    Sean M. Burke, \u003csburke@cpan.org\u003e\n\n\n\nPREREQUISITES\n\nThis suite requires Perl 5.\n\n\nINSTALLATION\n\nYou install Module::Versions::Report, as you would install any Perl module\ndistribution, by running these commands:\n\n   perl Makefile.PL\n   make\n   make test\n   make install\n\nIf you want to install a private copy of Module::Versions::Report in\nyour home directory, then you should try to produce the initial Makefile\nwith something like this command:\n\n  perl Makefile.PL LIB=~/perl\n\nSee perldoc perlmodinstall for more information.\n\n\nDOCUMENTATION\n\nSee the pod in Module::Versions::Report.\n\n\nSUPPORT\n\nQuestions, bug reports, useful code bits, and suggestions for\nWorms should be sent to me at sburke@cpan.org\n\n\nAVAILABILITY\n\nThe latest version of Module::Versions::Report is available from the\nComprehensive Perl Archive Network (CPAN).  Visit\n\u003chttp://www.perl.com/CPAN/\u003e to find a CPAN site near you.\n\n\nCOPYRIGHT\n\nCopyright 2001-2003, Sean M. Burke \u003csburke@cpan.org\u003e, all rights\nreserved.  This program is free software; you can redistribute it\nand/or modify it under the same terms as Perl itself.\n\n\nAUTHOR\n\nSean M. Burke \u003csburke@cpan.org\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbestpractical%2Fmodule-versions-report","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbestpractical%2Fmodule-versions-report","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbestpractical%2Fmodule-versions-report/lists"}