1# This Source Code Form is subject to the terms of the Mozilla Public
2# License, v. 2.0. If a copy of the MPL was not distributed with this
3# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4#
5# This Source Code Form is "Incompatible With Secondary Licenses", as
6# defined by the Mozilla Public License, v. 2.0.
7
8package Bugzilla::Extension::Example;
9use strict;
10use constant NAME => 'Example';
11use constant REQUIRED_MODULES => [
12    {
13        package => 'Data-Dumper',
14        module  => 'Data::Dumper',
15        version => 0,
16    },
17];
18
19use constant OPTIONAL_MODULES => [
20    {
21        package => 'Acme',
22        module  => 'Acme',
23        version => 1.11,
24        feature => ['example_acme'],
25    },
26];
27
28__PACKAGE__->NAME;
29