| Dist-Zilla documentation | view source | Contained in the Dist-Zilla distribution. |
Dist::Zilla::Plugin::Prereqs - list simple prerequisites
version 4.200008
In your dist.ini:
[Prereqs] Foo::Bar = 1.002 MRO::Compat = 10 Sub::Exporter = 0
Which is equivalent to specifying prerequisites for the Runtime
phase:
[Prereqs / RuntimeRequires] Foo::Bar = 1.002 MRO::Compat = 10 Sub::Exporter = 0
See Phases for the full list of supported phases.
This module adds "fixed" prerequisites to your distribution. These are prereqs with a known, fixed minimum version that doens't change based on platform or other conditions.
You can specify prerequisites for different phases and kinds of relationships.
In RuntimeRequires, the phase is Runtime and the relationship is Requires.
These are described in more detail in the CPAN::Meta specification.
The phases are:
The relationship types are:
If the phase is omitted, it will default to runtime; thus, specifying "Prereqs / Recommends" in your dist.ini is equivalent to RuntimeRecommends.
Not all of these phases are useful for all tools, especially tools that only understand version 1.x CPAN::Meta files.
Ricardo SIGNES <rjbs@cpan.org>
This software is copyright (c) 2011 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Dist-Zilla documentation | view source | Contained in the Dist-Zilla distribution. |