I'd say the must-haves are:

  1. strict
  2. warnings
  3. utf8
  4. Carp
  5. Exporter
  6. List::Util
  7. Scalar::Util
  8. parent
  9. Tie::Hash::NamedScalar and File::Glob because they get auto-required by core under various circumstances.
  10. Everything necessary to bootstrap a CPAN client such as cpanminus.
  11. Test::Harness
  12. Test::More

If you wanted to throw some other stuff in as a bonus:

  1. HTTP::Tiny (though this is probably necessary to bootstrap a CPAN client)
  2. JSON::PP
  3. Class::Tiny
  4. Role::Tiny
  5. Class::Method::Modifiers

In practice there are quite a few modules which are only available as part of the core Perl distribution, and are not on CPAN in their own right. This means that if you cut them out of your Perl install, users cannot obtain them from CPAN. So you probably need to keep them.

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name

In reply to Re^3: Perl::Minimal -- the good, bad, and the ugly... by tobyink
in thread Perl::Minimal -- the good, bad, and the ugly... by taint

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.