mkanat%bugzilla.org 974408abdf Missing strings in install Config
git-svn-id: svn://10.0.0.236/trunk@260837 18797224-902f-48f8-a5cc-f745e15eee43
2010-07-21 18:46:02 +00:00

51 lines
1.1 KiB
Perl

package Bugzilla::Extension::Testopia;
use strict;
use constant NAME => 'Testopia';
use constant REQUIRED_MODULES => [
{
package => 'JSON',
module => 'JSON',
version => '2.10'
},
{
package => 'Text-Diff',
module => 'Text::Diff',
version => '0.35'
},
{
package => 'GD-Graph3d',
module => 'GD::Graph3d',
version => '0.63'
},
];
use constant OPTIONAL_MODULES => [
{
package => 'Text-CSV',
module => 'Text::CSV',
version => '1.06',
feature => ['testopia_csv_import']
},
{
package => 'XML Schema Validator',
module => 'XML::Validator::Schema',
version => '1.10',
feature => ['testopia_xml_import']
},
{
package => 'XML Schema Parser',
module => 'XML::SAX::ParserFactory',
version => 0,
feature => ['testopia_xml_import']
},
{
package => 'XML Twig',
module => 'XML::Twig',
version => 0,
feature => ['testopia_xml_import']
}
];
__PACKAGE__->NAME;