Bugzilla::CPAN - Methods relating to Bugzilla's CPAN metadata (including features)
use Bugzilla;
Bugzilla->cpan_meta;
Bugzilla->feature('psgi');
Bugzilla->has_feature('psgi');
You most likely never need to use this module directly, as the Bugzilla factory class inherits all of these class methods. It exists so that cpan metadata can be read in before the rest of Bugzilla.pm is loaded in checksetup.pl
featureWrapper around has_feature() that also loads all of required modules into the runtime.
has_featureConsults MYMETA.yml for optional Bugzilla features and returns true if all the requirements are installed.
cpan_metaReturns a CPAN::Meta from the contents of MYMETA.json in the Bugzilla directory.
preload_features()Attempts to load all features.